25 lines
439 B
C#
25 lines
439 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)
|
|
{
|
|
_telemetry = telemetry;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void OnGet()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|