Restructures project with feature-based organization

Refactors project structure to support modular, feature-driven development

Introduces comprehensive language localization support
Adds menu management with role-based access control
Implements dynamic sidebar and theme switching capabilities

Enhances project scalability and maintainability
This commit is contained in:
Janus C. H. Knudsen 2026-01-08 15:44:11 +01:00
parent fac7754d7a
commit d7f3c55a2a
60 changed files with 3214 additions and 20 deletions

View file

@ -0,0 +1,12 @@
using CalendarServer.Features.Menu.Models;
namespace CalendarServer.Features.Menu;
/// <summary>
/// ViewModel for the side menu partial view.
/// </summary>
public class SideMenuViewModel
{
public required List<MenuGroup> Groups { get; set; }
public UserRole CurrentUserRole { get; set; }
}