19 lines
437 B
C#
19 lines
437 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayEcoMycarParkingLotbarcodeCreateModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayEcoMycarParkingLotbarcodeCreateModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 停车场编号
|
|
/// </summary>
|
|
[XmlElement("parking_id")]
|
|
public string ParkingId { get; set; }
|
|
}
|
|
}
|