using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// CardFundInfo Data Structure.
///
[Serializable]
public class CardFundInfo : AopObject
{
///
/// 消费资金账户
///
[XmlElement("fundaccount")]
public string Fundaccount { get; set; }
///
/// 消费资金类型
///
[XmlElement("fundtype")]
public string Fundtype { get; set; }
}
}