mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 02:57:56 +00:00
10 lines
231 B
C#
10 lines
231 B
C#
using System;
|
|
|
|
namespace MtApi5
|
|
{
|
|
public class Mt5BookEventArgs : EventArgs
|
|
{
|
|
public int ExpertHandle { get; set; }
|
|
public string? Symbol { get; set; } //Symbol of OnBookEvent event.
|
|
}
|
|
} |