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.
18 lines
429 B
18 lines
429 B
namespace SDKAdapter.Model
|
|
{
|
|
/// <summary>
|
|
/// 逐仓杠杆借币结果对象
|
|
/// </summary>
|
|
public class IsolatedMarginLoanResponse
|
|
{
|
|
/// <summary>
|
|
/// 本次借币金额
|
|
/// </summary>
|
|
public decimal CurrentLoanAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 账户借币金额
|
|
/// </summary>
|
|
public decimal AccountLoanAmount { get; set; }
|
|
}
|
|
}
|
|
|