Files
mtapi/MtApi/Events/MtChartEvent.cs

11 lines
283 B
C#

namespace MtApi.Events
{
internal class MtChartEvent
{
public long ChartId { get; set; }
public int EventId { get; set; }
public long Lparam { get; set; }
public double Dparam { get; set; }
public string Sparam { get; set; }
}
}