14 lines
352 B
C#
14 lines
352 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
|
|
namespace DysonNetwork.Sphere.Pages.Checkpoint;
|
|
|
|
public class CheckpointPage(IConfiguration configuration) : PageModel
|
|
{
|
|
[BindProperty] public IConfiguration Configuration { get; set; } = configuration;
|
|
|
|
public ActionResult OnGet()
|
|
{
|
|
return Page();
|
|
}
|
|
} |