LayoutViewModel.cs 353 B

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