- using Admin.Constants;
- using SharedKernel;
- namespace Admin.Pages.Shared.Layout
- {
- public class LayoutViewModel
- {
- public AppSettings? AppSettings { get; set; } = new();
- public List<Menu> Menus { get; set; } = [];
- public string UserName { get; set; } = default!;
- public string Role { get; set; } = default!;
- }
- }
|