namespace Binance.TradeRobot.Model.Dto
{
public class ExchangeAPIKeyResponse : Db.ExchangeAPIKey
{
///
/// 基础币金额(标的数量)
///
public decimal BaseAmount { get; set; }
///
/// 报价币金额(USDT)(可转资金)
///
public decimal QuoteAmount { get; set; }
///
/// 报价币借款金额(USDT)
///
public decimal QuoteLoanAmount { get; set; }
///
/// 报价币净资产(USDT)(不含借款)
///
public decimal QuoteNetAmount { get; set; }
///
/// 关联机器人的交易对
///
public string RobotSymbol { get; set; }
}
public class SimpleExchangeAPIKeyResponse
{
public long AccountId { get; set; }
public string APIKey { get; set; }
public string SecretKey { get; set; }
}
}