PlanTempusApp/PlanTempus.Application/Features/CashRegister/Components/ReconciliationNote/ReconciliationNoteViewComponent.cs

16 lines
361 B
C#
Raw Normal View History

using Microsoft.AspNetCore.Mvc;
2026-01-11 21:42:24 +01:00
namespace PlanTempus.Application.Features.CashRegister.Components;
/// <summary>
/// ViewComponent for the note field.
/// Optional field for explaining cash differences.
/// </summary>
2026-01-11 21:42:24 +01:00
public class ReconciliationNoteViewComponent : ViewComponent
{
public IViewComponentResult Invoke()
{
return View();
}
}