PlanTempusApp/PlanTempus.Application/Features/Employees/Pages/Index.cshtml.cs

11 lines
180 B
C#
Raw Normal View History

2026-01-12 22:10:57 +01:00
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace PlanTempus.Application.Features.Employees.Pages;
public class IndexModel : PageModel
{
public void OnGet()
{
}
}