PlanTempusApp/PlanTempus.Application/Features/Menu/Services/IMenuService.cs

15 lines
397 B
C#
Raw Permalink Normal View History

2026-01-10 20:39:17 +01:00
using PlanTempus.Application.Features.Menu.Models;
namespace PlanTempus.Application.Features.Menu.Services;
/// <summary>
/// Service for retrieving menu structure based on user role.
/// </summary>
public interface IMenuService
{
/// <summary>
/// Get menu groups filtered by user role.
/// </summary>
List<MenuGroup> GetMenuForRole(UserRole role, string? currentUrl = null);
}