Files

11 lines
299 B
C#
Raw Permalink Normal View History

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;
}
}