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