Query.cs 142 B

123456
  1. using MediatR;
  2. namespace Application.Features.Director.GetUsers
  3. {
  4. public sealed record GetAllUserQuery() : IRequest<List<Response>>;
  5. }