17 lines
303 B
C#
17 lines
303 B
C#
namespace Yi.Framework.Rbac.Domain.Authorization
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
|
|
public class PermissionAttribute : Attribute
|
|
{
|
|
internal string Code { get; set; }
|
|
|
|
public PermissionAttribute(string code)
|
|
{
|
|
Code = code;
|
|
}
|
|
|
|
|
|
}
|
|
}
|