mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 19:17:48 +00:00
10 lines
299 B
C#
10 lines
299 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; }
|
|
}
|
|
} |