Command.cs 262 B

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