JXMovies/CMS/JXCMS.CMS.Movie/Attribute/AdminAuthenticationAttribute.cs

11 lines
273 B
C#
Raw Normal View History

2020-02-09 19:10:05 +08:00
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";
}
}