JXMovies/CMS/JXCMS.CMS.Movie/Attribute/AdminAuthenticationAttribute.cs
2020-02-09 19:10:05 +08:00

11 lines
273 B
C#
Executable File

using JXCMS.Core.Auth;
namespace JXCMS.CMS.Attribute
{
public class AdminAuthenticationAttribute : BaseAuthorizeAttribute
{
public new static string LoginPath = "/Admin/Home/Login";
public new static string AccessDeniedPath = "/Denied";
}
}