Files
mtapi/MtApi/Requests/SymbolInfoDoubleRequest.cs

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; }
}
}