ibms-dome/Frontend - 複製/Controllers/DashboardController.cs

17 lines
316 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace Frontend.Controllers
{
public class DashboardController : Controller
{
// GET: Dashboard
public ActionResult Index()
{
return View();
}
}
}