mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 02:57:56 +00:00
10 lines
164 B
C#
10 lines
164 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace MtApi.Requests
|
|
{
|
|
public abstract class RequestBase
|
|
{
|
|
public abstract RequestType RequestType { get; }
|
|
}
|
|
}
|