using Managing.Application.Abstractions; using Managing.Domain.Users; using MediatR; namespace Managing.Application.ManageBot.Commands { /// /// Command to retrieve all active agents and their strategies /// public class GetAllAgentsCommand : IRequest>> { /// /// Optional time filter to apply (24H, 3D, 1W, 1M, 1Y, Total) /// public string TimeFilter { get; } public GetAllAgentsCommand(string timeFilter = "Total") { TimeFilter = timeFilter; } } }