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