BootstrapAdmin/Bootstrap.Admin/App_Start/BAAuthorizeAttribute.cs

14 lines
295 B
C#
Raw Normal View History

2016-10-21 16:35:26 +08:00
using Longbow.Web.Mvc;
using System;
namespace Bootstrap.Admin
{
/// <summary>
///
/// </summary>
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, Inherited = true, AllowMultiple = true)]
class BAAuthorizeAttribute : LgbAuthorizeAttribute
{
}
}