using System; using System.Collections.Generic; using System.Text; namespace SDKAdapter.Model { /// /// 逐仓杠杆账户资产 /// public class IsolatedMarginAccountAsset { public string Symbol { get; set; } /// /// 基础币 /// public string BaseAsset { get; set; } /// /// 基础币借币金额 /// public decimal BaseBorrowed { get; set; } /// /// 基础币可用资产 /// public decimal BaseFree { get; set; } /// /// 基础币借币利息 /// public decimal BaseInterest { get; set; } /// /// 基础币锁定资产 /// public decimal BaseLocked { get; set; } /// /// 基础币净资产 /// public decimal BaseNetAsset { get; set; } /// /// 报价币 /// public string QuoteAsset { get; set; } /// /// 报价币借币金额 /// public decimal QuoteBorrowed { get; set; } /// /// 报价币可用资产 /// public decimal QuoteFree { get; set; } /// /// 报价币借币利息 /// public decimal QuoteInterest { get; set; } /// /// 报价币锁定资产 /// public decimal QuoteLocked { get; set; } /// /// 报价币净资产 /// public decimal QuoteNetAsset { get; set; } } }