Files
mtapi/MtApi5/MtProtocol/MtQuote.cs
T

9 lines
217 B
C#
Raw Normal View History

2024-01-14 21:57:07 +02:00
namespace MtApi5.MtProtocol
{
2024-01-14 21:57:07 +02:00
internal class MtQuote
{
2024-01-14 21:57:07 +02:00
public MtTick? Tick { get; set; }
public string? Instrument { get; set; }
public int ExpertHandle { get; set; }
}
}