Files
mtapi/MtApi5/Requests/SymbolInfoStringRequest.cs
T

10 lines
300 B
C#

namespace MtApi5.Requests
{
internal class SymbolInfoStringRequest : RequestBase
{
public override RequestType RequestType => RequestType.SymbolInfoString;
public string? SymbolName { get; set; }
public ENUM_SYMBOL_INFO_STRING PropId { get; set; }
}
}