mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-27 18:47:55 +00:00
8 lines
148 B
C#
8 lines
148 B
C#
namespace MtApi.Requests
|
|
{
|
|
internal abstract class RequestBase
|
|
{
|
|
public abstract RequestType RequestType { get; }
|
|
}
|
|
}
|