2020-11-29 19:30:21 +02:00
|
|
|
namespace MtApi.Events
|
2017-09-05 18:34:26 +03:00
|
|
|
{
|
|
|
|
|
internal class MtChartEvent
|
|
|
|
|
{
|
|
|
|
|
public long ChartId { get; set; }
|
|
|
|
|
public int EventId { get; set; }
|
|
|
|
|
public long Lparam { get; set; }
|
|
|
|
|
public double Dparam { get; set; }
|
2024-06-16 13:57:50 +03:00
|
|
|
public string Sparam { get; set; } = string.Empty;
|
2017-09-05 18:34:26 +03:00
|
|
|
}
|
|
|
|
|
}
|