PlanTempusApp/PlanTempus.Application/Features/Settings/Components/SettingsCalendar/SettingsCalendarViewComponent.cs

16 lines
375 B
C#
Raw Normal View History

using Microsoft.AspNetCore.Mvc;
namespace PlanTempus.Application.Features.Settings.Components;
/// <summary>
/// ViewComponent for the calendar settings tab.
/// Handles calendar view options, resources, and intervals.
/// </summary>
public class SettingsCalendarViewComponent : ViewComponent
{
public IViewComponentResult Invoke()
{
return View();
}
}