mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-29 03:27: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; }
|
||
|
|
}
|
||
|
|
}
|