using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// TemplateBenefitInfoDTO Data Structure.
///
[Serializable]
public class TemplateBenefitInfoDTO : AopObject
{
///
/// 权益描述信息
///
[JsonProperty("benefit_desc")]
public List BenefitDesc { get; set; }
///
/// 权益结束时间
///
[JsonProperty("end_date")]
public string EndDate { get; set; }
///
/// 开始时间
///
[JsonProperty("start_date")]
public string StartDate { get; set; }
///
/// 权益描述
///
[JsonProperty("title")]
public string Title { get; set; }
}
}