using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// VoucherTermInfo Data Structure. /// [Serializable] public class VoucherTermInfo : AopObject { /// /// 描述信息 /// [JsonProperty("descriptions")] public List Descriptions { get; set; } /// /// 详情title /// [JsonProperty("title")] public string Title { get; set; } } }