币安量化交易
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.

26 lines
641 B

using Binance.TradeRobot.Model.Db;
using System.Collections.Generic;
namespace Binance.TradeRobot.Model.Dto
{
public class ExchangeAccountResponse : ExchangeAccount
{
public IList<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; }
}
}