Response.cs 170 B

123456789
  1. namespace Application.Features.Admin.NavMenu.Get;
  2. public sealed record Response(
  3. int ID,
  4. string Label,
  5. string Href,
  6. int SortOrder,
  7. bool IsVisible
  8. );