using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// Contract Data Structure. /// [Serializable] public class Contract : AopObject { /// /// 合约文本内容 /// [JsonProperty("text")] public string Text { get; set; } /// /// 合约标题 /// [JsonProperty("title")] public string Title { get; set; } /// /// 合约类型 /// [JsonProperty("type")] public string Type { get; set; } } }