平安校园
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.
 
 
 
 
 
 

26 lines
283 B

  1. //
  2. namespace SafeCampus.Core;
  3. /// <summary>
  4. /// 管理员才能访问特性
  5. /// </summary>
  6. public class SuperAdminAttribute : Attribute
  7. {
  8. }
  9. /// <summary>
  10. /// 忽略超级管理员才能访问特性
  11. /// </summary>
  12. public class IgnoreSuperAdminAttribute : Attribute
  13. {
  14. }