using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// Option Data Structure. /// [Serializable] public class Option : AopObject { /// /// 文本,通常用于理解对应的取值 /// [JsonProperty("text")] public string Text { get; set; } /// /// 取值,通常使用简单的数字或字符串 /// [JsonProperty("value")] public string Value { get; set; } } }