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