using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// CodeCouponInfo Data Structure. /// [Serializable] public class CodeCouponInfo : AopObject { /// /// 领取时间 /// [XmlElement("taken_time")] public string TakenTime { get; set; } /// /// 用户名 /// [XmlElement("user_name")] public string UserName { get; set; } /// /// 面额(单位分) /// [XmlElement("voucher_amt")] public string VoucherAmt { get; set; } } }