PlanTempusApp/PlanTempus.Application/Features/OnlineBooking/Components/OnlineBookingUrl/OnlineBookingUrlViewComponent.cs

15 lines
347 B
C#
Raw Normal View History

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