16 lines
391 B
C#
16 lines
391 B
C#
|
|
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();
|
||
|
|
}
|
||
|
|
}
|