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