This commit is contained in:
jackchenyang
2024-05-18 10:12:33 +08:00
parent 1f159c4857
commit 58021ed5db
4 changed files with 19 additions and 193 deletions
+18
View File
@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace WebApi.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
ViewBag.Title = "Home Page";
return View();
}
}
}