PlanTempusApp/Application/Pages/Index.cshtml.cs
Janus Knudsen 269bf50c78 Adds code
2025-01-03 20:21:44 +01:00

25 lines
470 B
C#

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