Command.cs 161 B

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