mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 19:17:48 +00:00
18 lines
334 B
C#
Executable File
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; }
|
|
}
|
|
}
|