Home / FileServer / Web / Controllers / AppController.cs
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace Web.Controllers { public class AppController : Base.BaseController { public ActionResult Index() { return View(); } } }