PlanTempusApp/PlanTempus.Application/Features/Settings/Components/SettingsBooking/SettingsBookingViewComponent.cs

16 lines
391 B
C#
Raw Permalink Normal View History

using Microsoft.AspNetCore.Mvc;
namespace PlanTempus.Application.Features.Settings.Components;
/// <summary>
/// ViewComponent for the online booking settings tab.
/// Handles booking rules, customer restrictions, and checkout options.
/// </summary>
public class SettingsBookingViewComponent : ViewComponent
{
public IViewComponentResult Invoke()
{
return View();
}
}