using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HuanMeng.MiaoYu.Model.Dto.Account
{
///
/// 交易
///
public class TransactionDto
{
///
/// 交易内容
///
public string TransactionContent { get; set; }
///
/// 交易时间
///
public DateTime TransactionTime { get; set; }
///
/// 交易数量
///
public decimal TransactionAmount { get; set; }
///
/// 0充值金币1赠送金币2兑换道具
///
public int TransactionType { get; set; }
///
/// 0语珠
///
public int CurrencyType { get; set; }
}
}