mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 02:57:56 +00:00
10 lines
217 B
C#
Executable File
10 lines
217 B
C#
Executable File
namespace MtApi.MtProtocol
|
|
{
|
|
internal class Response<T>
|
|
{
|
|
public int ErrorCode { get; set; }
|
|
public string? ErrorMessage { get; set; }
|
|
|
|
public T? Value { get; set; }
|
|
}
|
|
} |