using Microsoft.AspNetCore.Mvc; namespace PlanTempus.Application.Features.OnlineBooking.Components; /// /// ViewComponent for displaying the booking URL with copy and open actions. /// public class OnlineBookingUrlViewComponent : ViewComponent { public IViewComponentResult Invoke() { return View(); } }