using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// KbadvertVoucherManual Data Structure. /// [Serializable] public class KbadvertVoucherManual : AopObject { /// /// 说明 /// [JsonProperty("details")] public List Details { get; set; } /// /// 标题 /// [JsonProperty("title")] public string Title { get; set; } } }