币安量化交易
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.

20 lines
495 B

namespace Binance.TradeRobot.Model.Dto
{
public class UserResponse : Db.User
{
/// <summary>
/// 总资产(本金+收益)
/// </summary>
public decimal TotalAssets { get { return CostAmount + Profit; } }
/// <summary>
/// 本金比例
/// </summary>
public decimal CostRatio { get; set; }
/// <summary>
/// 分红比例
/// </summary>
public decimal DividendRatio { get; set; }
}
}