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