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