🔨 Finish the initial setup of the Zone project

This commit is contained in:
2025-11-19 21:12:07 +08:00
parent 382579a20e
commit ce18b194a5
11 changed files with 217 additions and 27 deletions

View File

@@ -0,0 +1,11 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace DysonNetwork.Zone.Pages;
public class IndexModel : PageModel
{
public void OnGet()
{
}
}