using MediatR; namespace Diligent.WebAPI.Host.Mediator.Authentication.Commands { public class AddRoleCommand:IRequest { public string NameOfRole { get; } public AddRoleCommand(string nameOfRole) { NameOfRole = nameOfRole; } } }