You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
742 B
30 lines
742 B
3 years ago
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Binance.TradeRobot.Model.Dto
|
||
|
{
|
||
|
public class UserAccountFundChangeRecordResponse : Db.UserAccountFundChangeRecord
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 资金变更用户名
|
||
|
/// </summary>
|
||
|
public string UserName { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 操作用户名
|
||
|
/// </summary>
|
||
|
public string OperationUserName { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 对端用户名
|
||
|
/// </summary>
|
||
|
public string ToUserName { get; set; }
|
||
|
}
|
||
|
|
||
|
public class UserAccountChangeRecordListResponse
|
||
|
{
|
||
|
public long RecordCount { get; set; }
|
||
|
|
||
|
public IList<UserAccountFundChangeRecordResponse> List { get; set; }
|
||
|
}
|
||
|
}
|