Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayEcoMycarPromoTicketSyncModel.cs

32 lines
701 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoMycarPromoTicketSyncModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoMycarPromoTicketSyncModel : AopObject
{
/// <summary>
/// 营销活动ID
/// </summary>
[JsonProperty("active_id")]
public string ActiveId { get; set; }
/// <summary>
/// 需要同步的卡券信息
/// </summary>
[JsonProperty("code_no_list")]
public List<CodeNOList> CodeNoList { get; set; }
/// <summary>
/// 卡券来源
/// </summary>
[JsonProperty("source_type")]
public string SourceType { get; set; }
}
}