Files
mtapi/MtApi/Requests/SymbolInfoTickRequest.cs
T

9 lines
228 B
C#
Executable File

namespace MtApi.Requests
{
internal class SymbolInfoTickRequest: RequestBase
{
public override RequestType RequestType => RequestType.SymbolInfoTick;
public string Symbol { get; set; }
}
}