24 lines
467 B
C#
24 lines
467 B
C#
|
|
using System;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Domain
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// PromoteDateModel Data Structure.
|
||
|
|
/// </summary>
|
||
|
|
[Serializable]
|
||
|
|
public class PromoteDateModel : AopObject
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 日期
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("date")]
|
||
|
|
public string Date { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 推广数据
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("promote_data")]
|
||
|
|
public PromoteDataModel PromoteData { get; set; }
|
||
|
|
}
|
||
|
|
}
|