Add Agent tracking balance

This commit is contained in:
2025-05-16 22:30:18 +07:00
parent b34e3aa886
commit 1cfb83f0b1
34 changed files with 764 additions and 115 deletions

View File

@@ -0,0 +1,12 @@
using Managing.Domain.Statistics;
namespace Managing.Api.Models.Responses;
public class BestAgentsResponse
{
public IList<AgentBalanceHistory> Agents { get; set; }
public int TotalCount { get; set; }
public int CurrentPage { get; set; }
public int PageSize { get; set; }
public int TotalPages { get; set; }
}