Command.cs 250 B

1234567891011
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Admin.NavMenu.Create;
  4. public sealed record Command(
  5. string Label,
  6. string Href,
  7. int SortOrder,
  8. bool IsVisible
  9. ) : ICommand<Result>;