16 lines
417 B
C#
16 lines
417 B
C#
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Response
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// AlipayEcoMycarParkingParkinglotinfoCreateResponse.
|
|||
|
|
/// </summary>
|
|||
|
|
public class AlipayEcoMycarParkingParkinglotinfoCreateResponse : AopResponse
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 支付宝返回停车场id。成功不为空,失败返回空
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("parking_id")]
|
|||
|
|
public string ParkingId { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|