using Microsoft.AspNetCore.Mvc; namespace PlanTempus.Application.Features.Settings.Components; /// /// ViewComponent for the payments settings tab. /// Handles in-store payment methods, online payments, and fees. /// public class SettingsPaymentsViewComponent : ViewComponent { public IViewComponentResult Invoke() { return View(); } }