using MediatR; namespace Application.Features.Director.GetUsers { public sealed record GetAllUserQuery() : IRequest<List<Response>>; }