Command.cs 141 B

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