PlanTempusApp/PlanTempus.Application/Features/Settings/Components/SettingsGeneral/SettingsGeneralViewComponent.cs

16 lines
374 B
C#
Raw Permalink Normal View History

using Microsoft.AspNetCore.Mvc;
namespace PlanTempus.Application.Features.Settings.Components;
/// <summary>
/// ViewComponent for the general company settings tab.
/// Handles company name, CVR, address, contact info.
/// </summary>
public class SettingsGeneralViewComponent : ViewComponent
{
public IViewComponentResult Invoke()
{
return View();
}
}