PlanTempusApp/PlanTempus.Application/Features/Settings/Components/SettingsModules/SettingsModulesViewComponent.cs

16 lines
370 B
C#
Raw Permalink Normal View History

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