mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-29 03:27:48 +00:00
11 lines
269 B
C#
11 lines
269 B
C#
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; }
|
|
}
|
|
}
|