namespace Rcs.Application.MessageBus.Commands;
public class GetTaskTemplatesQuery : PaginationParameters
{
public string? TemplateCode { get; set; }
public string? TemplateName { get; set; }
public string? RobotType { get; set; }
public bool? IsEnabled { get; set; }
}