PlanTempusApp/PlanTempus.Application/Features/Kasse/Components/KasseNote/KasseNoteViewComponent.cs

16 lines
345 B
C#
Raw Normal View History

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