mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 02:57:56 +00:00
24 lines
660 B
C#
24 lines
660 B
C#
using System;
|
|
|
|
namespace MtApi
|
|
{
|
|
public class ChartEventArgs : EventArgs
|
|
{
|
|
internal ChartEventArgs(int expertHandle, MtChartEvent chartEvent)
|
|
{
|
|
ExpertHandle = expertHandle;
|
|
ChartId = chartEvent.ChartId;
|
|
EventId = chartEvent.EventId;
|
|
Lparam = chartEvent.Lparam;
|
|
Dparam = chartEvent.Dparam;
|
|
Sparam = chartEvent.Sparam;
|
|
}
|
|
|
|
public int ExpertHandle { get; }
|
|
public long ChartId { get; }
|
|
public int EventId { get; }
|
|
public long Lparam { get; }
|
|
public double Dparam { get; }
|
|
public string Sparam { get; }
|
|
}
|
|
} |