using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayEcoMycarPromoTicketSyncModel Data Structure. /// [Serializable] public class AlipayEcoMycarPromoTicketSyncModel : AopObject { /// /// 营销活动ID /// [XmlElement("active_id")] public string ActiveId { get; set; } /// /// 需要同步的卡券信息 /// [XmlArray("code_no_list")] [XmlArrayItem("code_n_o_list")] public List CodeNoList { get; set; } /// /// 卡券来源 /// [XmlElement("source_type")] public string SourceType { get; set; } } }