Command.cs 143 B

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