mirror of
https://github.com/chyzy/RSystem-MVC
synced 2024-12-11 23:06:31 +01:00
17 lines
338 B
C#
17 lines
338 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
|
|
namespace RSystem.Areas.Admin.Controllers
|
|
{
|
|
[Authorize(Roles = "Admin")]
|
|
public class PanelController : Controller
|
|
{
|
|
public ActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
} |