Files
managing-apps/src/Managing.Domain.Statistics/AgentBalance.cs

15 lines
412 B
C#

public class AgentBalance
{
public string AgentName { get; set; }
public decimal TotalBalanceValue { get; set; }
public decimal BotsAllocationUsdValue { get; set; }
public decimal PnL { get; set; }
public DateTime Time { get; set; }
public IList<PnLPoint> PnLHistory { get; set; }
}
public class PnLPoint
{
public DateTime Time { get; set; }
public decimal Value { get; set; }
}