WIP
This commit is contained in:
parent
54b057886c
commit
7fc1ae0650
204 changed files with 4345 additions and 134 deletions
12
PlanTempus.Application/Features/Menu/Models/MenuGroup.cs
Normal file
12
PlanTempus.Application/Features/Menu/Models/MenuGroup.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
namespace PlanTempus.Application.Features.Menu.Models;
|
||||
|
||||
/// <summary>
|
||||
/// Represents a group of menu items (e.g., "Dashboard", "Data", "System").
|
||||
/// </summary>
|
||||
public class MenuGroup
|
||||
{
|
||||
public required string Id { get; set; }
|
||||
public required string Label { get; set; }
|
||||
public int SortOrder { get; set; }
|
||||
public List<MenuItem> Items { get; set; } = new();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue