5 lines
141 B
C#
5 lines
141 B
C#
|
namespace Parking_space_WebAPI.Authorization;
|
||
|
|
||
|
[AttributeUsage(AttributeTargets.Method)]
|
||
|
public class AllowAnonymousAttribute : Attribute
|
||
|
{ }
|