mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-08-04 14:37:46 +00:00
22 lines
424 B
C#
22 lines
424 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
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; }
|
||
|
|
}
|
||
|
|
}
|