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 PnLHistory { get; set; } } public class PnLPoint { public DateTime Time { get; set; } public decimal Value { get; set; } }