PlanTempusApp/PlanTempus.Application/Features/Settings/Components/SettingsBooking/SettingsBookingViewComponent.cs
Janus C. H. Knudsen 33c338345e Adds comprehensive Settings page with multiple configuration tabs
Introduces a new Settings page with configurable modules:
- General company information
- Calendar and booking settings
- Billing and payment configurations
- Tracking and analytics integrations

Implements modular ViewComponents for each settings section
Enhances user experience with toggle switches and detailed configuration options
2026-01-18 22:50:33 +01:00

15 lines
391 B
C#

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