using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// MCardDetail Data Structure. /// [Serializable] public class MCardDetail : AopObject { /// /// 储值卡可用余额 /// [XmlElement("available_amount")] public string AvailableAmount { get; set; } /// /// 储值卡名称 /// [XmlElement("name")] public string Name { get; set; } /// /// 储值卡支付金额 /// [XmlElement("pay_amount")] public string PayAmount { get; set; } } }