using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// VoucherTermInfo Data Structure. /// [Serializable] public class VoucherTermInfo : AopObject { /// /// 描述信息 /// [XmlArray("descriptions")] [XmlArrayItem("string")] public List Descriptions { get; set; } /// /// 详情title /// [XmlElement("title")] public string Title { get; set; } } }