Return only online agent name

This commit is contained in:
2025-07-31 15:55:03 +07:00
parent c454e87d7a
commit 6cd28a4edb
4 changed files with 79 additions and 13 deletions

View File

@@ -0,0 +1,14 @@
using MediatR;
namespace Managing.Application.ManageBot.Commands
{
/// <summary>
/// Command to retrieve only online agent names
/// </summary>
public class GetOnlineAgentNamesCommand : IRequest<List<string>>
{
public GetOnlineAgentNamesCommand()
{
}
}
}