16 lines
388 B
C#
16 lines
388 B
C#
|
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
|
||
|
|
namespace PlanTempus.Application.Features.Settings.Components;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// ViewComponent for the invoice and receipt settings tab.
|
||
|
|
/// Handles invoice templates, receipt settings, and numbering.
|
||
|
|
/// </summary>
|
||
|
|
public class SettingsBillingViewComponent : ViewComponent
|
||
|
|
{
|
||
|
|
public IViewComponentResult Invoke()
|
||
|
|
{
|
||
|
|
return View();
|
||
|
|
}
|
||
|
|
}
|