using Microsoft.AspNetCore.Mvc; namespace PlanTempus.Application.Features.OnlineBooking.Components; /// /// ViewComponent for online booking settings (toggle, booking ahead, notice, cancellation). /// public class OnlineBookingSettingsViewComponent : ViewComponent { public IViewComponentResult Invoke() { return View(); } }