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.
|
|
|
using Binance.TradeRobot.Model.Db;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Binance.TradeRobot.Model.Dto
|
|
|
|
{
|
|
|
|
public class ExchangeAccountResponse : ExchangeAccount
|
|
|
|
{
|
|
|
|
public List<ExchangeAPIKeyResponse> ExchangeAPIKeyList { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 合约USDT资产
|
|
|
|
/// </summary>
|
|
|
|
public decimal UPrepUSDT { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 币币USDT资产
|
|
|
|
/// </summary>
|
|
|
|
public decimal SpotUSDT { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 逐仓杠杆USDT资产
|
|
|
|
/// </summary>
|
|
|
|
public decimal SpotMarginUSDT { get; set; }
|
|
|
|
|
|
|
|
public ExchangeAccountResponse()
|
|
|
|
{
|
|
|
|
ExchangeAPIKeyList = new List<ExchangeAPIKeyResponse>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|