NoLoginAttribute.cs 218 B

1234567891011
  1. using System;
  2. namespace Host.Attributes
  3. {
  4. /// <summary>
  5. /// 标记了此特性的方法,不需要进行登录和授权认证
  6. /// </summary>
  7. public class NoLoginAttribute : Attribute
  8. {
  9. }
  10. }