Files
mtapi/MtApi/MtProtocol/Response.cs
T
2024-06-16 13:57:50 +03:00

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; }
}
}