mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-31 12:37:47 +00:00
13 lines
326 B
C#
13 lines
326 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace MtApi5.Requests
|
||
|
|
{
|
||
|
|
internal class ChartXyToTimePriceRequest : RequestBase
|
||
|
|
{
|
||
|
|
public override RequestType RequestType => RequestType.ChartXYToTimePrice;
|
||
|
|
|
||
|
|
public long ChartId { get; set; }
|
||
|
|
public int X { get; set; }
|
||
|
|
public int Y { get; set; }
|
||
|
|
}
|
||
|
|
}
|