mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 11:07:48 +00:00
11 lines
276 B
C#
11 lines
276 B
C#
namespace MtApi
|
|
{
|
|
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; }
|
|
}
|
|
} |