LayoutViewModel.cs 330 B

123456789101112
  1. using SharedKernel.Constants;
  2. using SharedKernel;
  3. namespace Admin.Pages.Shared.Layout;
  4. public class LayoutViewModel
  5. {
  6. public AppSettings? AppSettings { get; set; } = new();
  7. public List<Menu> Menus { get; set; } = [];
  8. public string UserName { get; set; } = default!;
  9. public string Role { get; set; } = default!;
  10. }