Files
mtapi/MTApiService/MtMqlBookInfo.cs
T

18 lines
334 B
C#
Executable File

using System.Runtime.Serialization;
namespace MTApiService
{
[DataContract]
public class MtMqlBookInfo
{
[DataMember]
public int type { get; set; }
[DataMember]
public double price { get; set; }
[DataMember]
public long volume { get; set; }
}
}