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