| 12345678910111213 |
- using System;
- namespace Abp.Authorization
- {
- /// <summary>
- /// Used to allow a method to be accessed by any user.
- /// Suppress <see cref="AbpAuthorizeAttribute"/> defined in the class containing that method.
- /// </summary>
- public class AbpAllowAnonymousAttribute : Attribute, IAbpAllowAnonymousAttribute
- {
- }
- }
|