Command.cs 132 B

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