Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayEcoMycarParkingAgreementQueryModel.cs

18 lines
441 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoMycarParkingAgreementQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoMycarParkingAgreementQueryModel : AopObject
{
/// <summary>
/// 车牌用户车辆进场时ISV设备识别到的车辆牌照
/// </summary>
[JsonProperty("car_number")]
public string CarNumber { get; set; }
}
}