using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// FeeRecords Data Structure.
///
[Serializable]
public class FeeRecords : AopObject
{
///
/// 费用余额,单位为元,小数点保留2位
///
[XmlElement("balance")]
public string Balance { get; set; }
///
/// 交易时间
///
[XmlElement("date")]
public string Date { get; set; }
///
/// 费用交易流水备注
///
[XmlElement("remark")]
public string Remark { get; set; }
///
/// 费用交易额度
///
[XmlElement("total_amount")]
public string TotalAmount { get; set; }
}
}