using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayEcoMycarParkingAgreementQueryModel Data Structure. /// [Serializable] public class AlipayEcoMycarParkingAgreementQueryModel : AopObject { /// /// 车牌,用户车辆进场时ISV设备识别到的车辆牌照 /// [JsonProperty("car_number")] public string CarNumber { get; set; } } }