mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 19:17:48 +00:00
12 lines
345 B
C#
Executable File
12 lines
345 B
C#
Executable File
namespace MtApi5.Requests
|
|
{
|
|
internal class CopyTicksRequest: RequestBase
|
|
{
|
|
public override RequestType RequestType => RequestType.CopyTicks;
|
|
|
|
public string SymbolName { get; set; }
|
|
public int Flags { get; set; }
|
|
public ulong From { get; set; }
|
|
public uint Count { get; set; }
|
|
}
|
|
} |