Files
mtapi/MTApiService/MtMqlBookInfo.cs
T

18 lines
334 B
C#
Raw Normal View History

using System.Runtime.Serialization;
2014-10-31 09:05:52 +02:00
namespace MTApiService
{
[DataContract]
public class MtMqlBookInfo
{
[DataMember]
public int type { get; set; }
[DataMember]
public double price { get; set; }
[DataMember]
public long volume { get; set; }
}
}