Files
2024-01-14 21:57:07 +02:00

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