添加 共赴宁波之春 报名网页

This commit is contained in:
范露尧
2023-03-09 22:16:03 +08:00
parent 21dd025ab8
commit 5755e9d9b0
44 changed files with 1386 additions and 534 deletions

View File

@@ -0,0 +1,14 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace Ewide.Web.Entry.Controllers
{
public class NingboZhiChunController : Controller
{
[AllowAnonymous]
public IActionResult Index()
{
return View();
}
}
}