mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 11:07:48 +00:00
10 lines
273 B
C#
10 lines
273 B
C#
namespace MtApi5.Requests
|
|
{
|
|
internal class PositionCloseRequest : RequestBase
|
|
{
|
|
public override RequestType RequestType => RequestType.PositionClose;
|
|
|
|
public ulong Ticket { get; set; }
|
|
public ulong Deviation { get; set; }
|
|
}
|
|
} |