Files
mtapi/MtApi/Events/MtChartEvent.cs
T
2024-06-16 13:57:50 +03:00

11 lines
299 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; } = string.Empty;
}
}