using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AliosOpenAutoInfoQueryResponse. /// public class AliosOpenAutoInfoQueryResponse : AopResponse { /// /// 发动机号 /// [XmlElement("engine_no")] public string EngineNo { get; set; } /// /// 车牌号 /// [XmlElement("license_no")] public string LicenseNo { get; set; } /// /// 用户激活时间 /// [XmlElement("user_activation_time")] public string UserActivationTime { get; set; } /// /// 车辆类型 /// [XmlElement("vehicle_type")] public string VehicleType { get; set; } /// /// 车辆识别号码 /// [XmlElement("vin")] public string Vin { get; set; } } }