mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-29 03:27:48 +00:00
10 lines
214 B
C#
10 lines
214 B
C#
namespace MtApi5.Requests
|
|
{
|
|
internal class Response<T>
|
|
{
|
|
public int ErrorCode { get; set; }
|
|
public string ErrorMessage { get; set; }
|
|
|
|
public T Value { get; set; }
|
|
}
|
|
} |