PlanTempusApp/Application/Pages/Index.cshtml.cs

26 lines
470 B
C#
Raw Normal View History

2025-01-03 16:21:03 +00:00
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()
{
}
}
}