1
0
mirror of https://github.com/chyzy/RSystem-MVC synced 2024-12-11 23:06:31 +01:00
RSystem-MVC-Fork/RSystem/Areas/Admin/Controllers/PanelController.cs
2018-04-17 11:20:49 +02:00

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();
}
}
}