mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 02:57:56 +00:00
11 lines
283 B
C#
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; }
|
|
}
|
|
} |