8 lines
170 B
C#
8 lines
170 B
C#
using System;
|
|
|
|
namespace CarParkValidationAPI.Authorization
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public class AllowAnonymousAttribute : Attribute
|
|
{ }
|
|
} |