using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Admin.NavMenu.Create; public sealed record Command( string Label, string Href, int SortOrder, bool IsVisible ) : ICommand;