mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 11:07:48 +00:00
14 lines
256 B
C#
14 lines
256 B
C#
using System;
|
|
|
|
namespace MtApi5
|
|
{
|
|
public class Mt5LockTicksEventArgs : EventArgs
|
|
{
|
|
internal Mt5LockTicksEventArgs(string symbol)
|
|
{
|
|
Symbol = symbol;
|
|
}
|
|
|
|
public string Symbol { get; }
|
|
}
|
|
} |