namespace Application.Features.Admin.NavMenu.List; public sealed record Response(int Total, List List) { public sealed record Row( int Num, int ID, string Label, string Href, int SortOrder, bool IsVisible, DateTime UpdatedAt, DateTime CreatedAt ); }