using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// CardCreditInfo Data Structure. /// [Serializable] public class CardCreditInfo : AopObject { /// /// 是否允许超扣 /// [XmlElement("allowoverpay")] public string Allowoverpay { get; set; } /// /// 超扣额度 /// [XmlElement("creditquota")] public string Creditquota { get; set; } } }