mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 11:07:48 +00:00
11 lines
292 B
C#
Executable File
11 lines
292 B
C#
Executable File
namespace MtApi.Requests
|
|
{
|
|
internal class GetOrderRequest: RequestBase
|
|
{
|
|
public int Index { get; set; }
|
|
public int Select { get; set; }
|
|
public int Pool { get; set; }
|
|
|
|
public override RequestType RequestType => RequestType.GetOrder;
|
|
}
|
|
} |