Backend/C_shape/WEBAPI/JWT/JWTdemo/Authorization/AllowAnonymousAttribute.cs

6 lines
131 B
C#
Raw Normal View History

2024-05-06 14:09:39 +08:00
namespace JWTdemo.Authorization;
[AttributeUsage(AttributeTargets.Method)]
public class AllowAnonymousAttribute : Attribute
{
}