using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// ClauseTerm Data Structure. /// [Serializable] public class ClauseTerm : AopObject { /// /// 说明描述内容 /// [JsonProperty("descriptions")] public List Descriptions { get; set; } /// /// 说明title /// [JsonProperty("title")] public string Title { get; set; } } }