mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 11:07:48 +00:00
8 lines
149 B
C#
8 lines
149 B
C#
|
|
namespace MtApi5.Requests
|
||
|
|
{
|
||
|
|
internal abstract class RequestBase
|
||
|
|
{
|
||
|
|
public abstract RequestType RequestType { get; }
|
||
|
|
}
|
||
|
|
}
|