Response.cs 337 B

123456789101112131415
  1. namespace Application.Features.Admin.NavMenu.List;
  2. public sealed record Response(int Total, List<Response.Row> List)
  3. {
  4. public sealed record Row(
  5. int Num,
  6. int ID,
  7. string Label,
  8. string Href,
  9. int SortOrder,
  10. bool IsVisible,
  11. DateTime UpdatedAt,
  12. DateTime CreatedAt
  13. );
  14. }