using Microsoft.AspNetCore.Mvc; namespace PlanTempus.Application.Features.CashRegister.Components; /// /// ViewComponent for the note field. /// Optional field for explaining cash differences. /// public class ReconciliationNoteViewComponent : ViewComponent { public IViewComponentResult Invoke() { return View(); } }