using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// McardTemplateBenefit Data Structure.
///
[Serializable]
public class McardTemplateBenefit : AopObject
{
///
/// 权益描述信息
///
[JsonProperty("benefit_desc")]
public List BenefitDesc { get; set; }
///
/// 权益结束时间
///
[JsonProperty("end_date")]
public string EndDate { get; set; }
///
/// 会员卡模板权益扩展信息:JSON格式; openUrl 说明:跳转到商户的优惠活动页面
///
[JsonProperty("ext_info")]
public string ExtInfo { get; set; }
///
/// 权益开始时间
///
[JsonProperty("start_date")]
public string StartDate { get; set; }
///
/// 会员卡模板ID
///
[JsonProperty("template_id")]
public string TemplateId { get; set; }
///
/// 权益标题
///
[JsonProperty("title")]
public string Title { get; set; }
}
}