PlanTempusApp/PlanTempus.Application/Features/Settings/Components/SettingsHours/SettingsHoursViewComponent.cs

16 lines
363 B
C#
Raw Normal View History

using Microsoft.AspNetCore.Mvc;
namespace PlanTempus.Application.Features.Settings.Components;
/// <summary>
/// ViewComponent for the opening hours settings tab.
/// Handles weekly opening hours with toggles.
/// </summary>
public class SettingsHoursViewComponent : ViewComponent
{
public IViewComponentResult Invoke()
{
return View();
}
}