Managed mode page will render with layout

This commit is contained in:
2025-12-11 22:25:40 +08:00
parent 922afc2239
commit 8181938aaf
6 changed files with 132 additions and 13 deletions

View File

@@ -0,0 +1,8 @@
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace DysonNetwork.Zone.Pages.Dynamic;
public class DynamicPage : PageModel
{
public string Html { get; set; } = "";
}