using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayEcoMycarCarlibInfoPushModel Data Structure. /// [Serializable] public class AlipayEcoMycarCarlibInfoPushModel : AopObject { /// /// 品牌 /// [JsonProperty("brand")] public string Brand { get; set; } /// /// 排量 /// [JsonProperty("cc")] public string Cc { get; set; } /// /// 厂商 /// [JsonProperty("company")] public string Company { get; set; } /// /// 发动机型号 /// [JsonProperty("engine")] public string Engine { get; set; } /// /// 销售名字 /// [JsonProperty("marker")] public string Marker { get; set; } /// /// 生产年份 /// [JsonProperty("prod_year")] public string ProdYear { get; set; } /// /// 车系 /// [JsonProperty("serie")] public string Serie { get; set; } /// /// 车款 /// [JsonProperty("style")] public string Style { get; set; } } }