Command.cs 134 B

123456
  1. using MediatR;
  2. namespace Application.Features.Director.Role.Create
  3. {
  4. public sealed record Command(string? RoleName) : IRequest;
  5. }