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