Basf_EProject/EProject/WebApi/Controllers/HomeController.cs

26 lines
462 B
C#
Raw Normal View History

2024-05-08 11:01:54 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace WebApi.Controllers
{
2026-02-10 15:41:06 +08:00
/// <summary>
///
/// </summary>
2024-05-08 11:01:54 +08:00
public class HomeController : Controller
{
2026-02-10 15:41:06 +08:00
/// <summary>
///
/// </summary>
/// <returns></returns>
2024-05-08 11:01:54 +08:00
public ActionResult Index()
{
ViewBag.Title = "Home Page";
return View();
}
}
}