using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayEcoMycarParkingCardbarcodeCreateResponse. /// public class AlipayEcoMycarParkingCardbarcodeCreateResponse : AopResponse { /// /// 停车车卡对应二维码列表 /// [XmlArray("qrcodes")] [XmlArrayItem("q_rcode")] public List Qrcodes { get; set; } } }