You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
- //
-
-
-
-
-
-
-
-
- namespace SafeCampus.Core;
-
- /// <summary>
- /// 管理员才能访问特性
- /// </summary>
- public class SuperAdminAttribute : Attribute
- {
- }
-
- /// <summary>
- /// 忽略超级管理员才能访问特性
- /// </summary>
- public class IgnoreSuperAdminAttribute : Attribute
- {
- }
|