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