0
0

LoginAttribute.cs 261 B

123456789101112
  1. using System;
  2. namespace Admin.Core.Attributes
  3. {
  4. /// <summary>
  5. /// 启用登录
  6. /// </summary>
  7. [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = true)]
  8. public class LoginAttribute : Attribute
  9. {
  10. }
  11. }