Files
managing-apps/src/Managing.Domain.Statistics/AgentBalance.cs
2025-05-16 22:30:18 +07:00

16 lines
459 B
C#

public class AgentBalance
{
public string AgentName { get; set; }
public decimal TotalValue { get; set; }
public decimal TotalAccountUsdValue { 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; }
}