mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 11:07:48 +00:00
14 lines
338 B
C#
14 lines
338 B
C#
namespace MtApi
|
|
{
|
|
public class MtLockTicksEventArgs : EventArgs
|
|
{
|
|
internal MtLockTicksEventArgs(int expertHandle, string symbol)
|
|
{
|
|
ExpertHandle = expertHandle;
|
|
Symbol = symbol;
|
|
}
|
|
|
|
public int ExpertHandle { get; }
|
|
public string Symbol { get; }
|
|
}
|
|
} |