Get TotalAgentCount

This commit is contained in:
2025-09-28 14:43:15 +07:00
parent 147186724e
commit c71716d5c2
5 changed files with 23 additions and 3 deletions

View File

@@ -35,4 +35,10 @@ public interface IAgentSummaryRepository
/// <param name="userId">The user ID</param>
/// <param name="agentName">The new agent name</param>
Task UpdateAgentNameAsync(int userId, string agentName);
/// <summary>
/// Gets the total count of agents
/// </summary>
/// <returns>Total number of agents</returns>
Task<int> GetTotalAgentCount();
}