Files
mtapi/MtApi5/Mt5BookEventArgs.cs
T
2018-03-02 11:43:03 +02:00

10 lines
230 B
C#

using System;
namespace MtApi5
{
public class Mt5BookEventArgs : EventArgs
{
public int ExpertHandle { get; set; }
public string Symbol { get; set; } //Symbol of OnBookEvent event.
}
}