2016-11-14 14:04:31 +02:00
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|