using MediatR; namespace Application.Features.Director.CreateRole { public sealed record CreateRoleCommand(string? RoleName) : IRequest; }