using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEcoMycarParkingBusinessModifyModel Data Structure.
///
[Serializable]
public class AlipayEcoMycarParkingBusinessModifyModel : AopObject
{
///
/// 停车场无感业务归属appid。appid在停车平台配置过ISV信息。
///
[XmlElement("agreement_appid")]
public string AgreementAppid { get; set; }
///
/// 支付宝返回停车场id
///
[XmlElement("parking_id")]
public string ParkingId { get; set; }
}
}