PlanTempusApp/PlanTempus.Application/Features/Settings/Components/SettingsReminders/SettingsRemindersViewComponent.cs

16 lines
366 B
C#
Raw Normal View History

using Microsoft.AspNetCore.Mvc;
namespace PlanTempus.Application.Features.Settings.Components;
/// <summary>
/// ViewComponent for the reminders settings tab.
/// Handles SMS and email reminder configuration.
/// </summary>
public class SettingsRemindersViewComponent : ViewComponent
{
public IViewComponentResult Invoke()
{
return View();
}
}