using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// CardFrontTextDTO Data Structure. /// [Serializable] public class CardFrontTextDTO : AopObject { /// /// 文案标签 /// [XmlElement("label")] public string Label { get; set; } /// /// 展示文案 /// [XmlElement("value")] public string Value { get; set; } } }