Files
mtapi/MtApi5/MqlParam.cs
T

11 lines
269 B
C#
Raw Normal View History

namespace MtApi5
{
public class MqlParam
{
public ENUM_DATATYPE DataType { get; set; }
public long? IntegerValue { get; set; }
public double? DoubleValue { get; set; }
public string StringValue { get; set; }
}
}