GetActionConfigurationsQuery.cs 334 Bytes
namespace Rcs.Application.MessageBus.Commands;

public class GetActionConfigurationsQuery : PaginationParameters
{
    public string? ActionName { get; set; }
    public string? Manufacturer { get; set; }
    public int? ActionCategory { get; set; }
    public int? RobotType { get; set; }
    public bool? IsEnabled { get; set; }
}