using Microsoft.AspNetCore.Mvc; namespace PlanTempus.Application.Features.Settings.Components; /// /// ViewComponent for the modules settings tab. /// Handles feature module toggles and add-on management. /// public class SettingsModulesViewComponent : ViewComponent { public IViewComponentResult Invoke() { return View(); } }