mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-23 21:13:35 +08:00
11 lines
203 B
C#
11 lines
203 B
C#
![]() |
using System.Web.Mvc;
|
||
|
|
||
|
namespace Orchard.Users.Controllers {
|
||
|
public class AdminController : Controller {
|
||
|
public ActionResult Index() {
|
||
|
return View();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|