Files

17 lines
303 B
C#
Raw Permalink Normal View History

2023-12-11 09:55:12 +08:00
namespace Yi.Framework.Rbac.Domain.Authorization
{
[AttributeUsage(AttributeTargets.Method)]
public class PermissionAttribute : Attribute
{
internal string Code { get; set; }
public PermissionAttribute(string code)
{
Code = code;
}
}
}