using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// SimpleMockModel Data Structure. /// [Serializable] public class SimpleMockModel : AopObject { /// /// 11 /// [XmlElement("count_items")] public long CountItems { get; set; } /// /// 111 /// [XmlElement("happen_time")] public string HappenTime { get; set; } /// /// 1.2f /// [XmlElement("price_num")] public string PriceNum { get; set; } /// /// false /// [XmlElement("right")] public bool Right { get; set; } /// /// trade_no /// [XmlElement("trade_no")] public string TradeNo { get; set; } } }