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

11 lines
180 B
C#
Raw Permalink Normal View History

2026-01-10 20:39:17 +01:00
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace PlanTempus.Application.Features.Dashboard.Pages;
public class IndexModel : PageModel
{
public void OnGet()
{
}
}