PlanTempusApp/PlanTempus.DeprecatedApplication/Pages/Index.cshtml.cs
Janus C. H. Knudsen 7fc1ae0650 WIP
2026-01-10 20:39:17 +01:00

24 lines
424 B
C#

using Microsoft.ApplicationInsights;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace PlanTempus.Application.Pages
{
public class IndexModel : PageModel
{
private readonly TelemetryClient _telemetry;
public IndexModel(TelemetryClient telemetry)
{
_telemetry = telemetry;
}
public void OnGet()
{
}
}
}