mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 11:07:48 +00:00
12 lines
295 B
C#
Executable File
12 lines
295 B
C#
Executable File
using System;
|
|
|
|
namespace MtApi.Requests
|
|
{
|
|
internal class SymbolInfoDoubleRequest : RequestBase
|
|
{
|
|
public override RequestType RequestType => RequestType.SymbolInfoDouble;
|
|
|
|
public string SymbolName { get; set; }
|
|
public int PropId { get; set; }
|
|
}
|
|
} |