namespace Binance.TradeRobot.Model.Dto { public class ExchangeAPIKeyResponse : Db.ExchangeAPIKey { /// /// 逐仓杠杆USDT /// public decimal SpotMarginUSDT { 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; } } }