mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-08-07 16:07:53 +00:00
8 lines
173 B
C#
8 lines
173 B
C#
|
|
namespace MtApi.Responses
|
||
|
|
{
|
||
|
|
public class ResponseBase
|
||
|
|
{
|
||
|
|
public int ErrorCode { get; set; }
|
||
|
|
public string ErrorMessage { get; set; }
|
||
|
|
}
|
||
|
|
}
|