mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 02:57:56 +00:00
11 lines
295 B
C#
11 lines
295 B
C#
namespace MtApi5
|
|
{
|
|
public class MqlParam
|
|
{
|
|
public ENUM_DATATYPE DataType { get; set; }
|
|
public long IntegerValue { get; set; } = 0;
|
|
public double DoubleValue { get; set; } = 0.0;
|
|
public string StringValue { get; set; } = String.Empty;
|
|
}
|
|
}
|