PlanTempusApp/PlanTempus.Application/Features/OnlineBooking/Components/OnlineBookingSettings/OnlineBookingSettingsViewComponent.cs

15 lines
368 B
C#
Raw Normal View History

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