PlanTempusApp/PlanTempus.Application/Features/CashRegister/Pages/Index.cshtml.cs
2026-01-11 21:42:24 +01:00

10 lines
183 B
C#

using Microsoft.AspNetCore.Mvc.RazorPages;
namespace PlanTempus.Application.Features.CashRegister.Pages;
public class IndexModel : PageModel
{
public void OnGet()
{
}
}