namespace Binance.TradeRobot.Model.Dto
{
    public class ExchangeAPIKeyResponse : Db.ExchangeAPIKey
    {
        //public ExchangeAPIKeyResponse(long id) { this.Id = id; }
        /// <summary>
        /// 基础币金额(标的数量)
        /// </summary>
        public decimal BaseAmount { get; set; }

        /// <summary>
        /// 报价币金额(USDT)(可转资金)
        /// </summary>
        public decimal QuoteAmount { get; set; }

        /// <summary>
        /// 报价币借款金额(USDT)
        /// </summary>
        public decimal QuoteLoanAmount { get; set; }

        /// <summary>
        /// 报价币净资产(USDT)(不含借款)
        /// </summary>
        public decimal QuoteNetAmount { get; set; }

        /// <summary>
        /// 关联机器人的交易对
        /// </summary>
        public string RobotSymbol { get; set; }
    }

    public class SimpleExchangeAPIKeyResponse
    {
        public long AccountId { get; set; }
        public string APIKey { get; set; }
        public string SecretKey { get; set; }
    }
}