10 lines
222 B
C#
10 lines
222 B
C#
|
namespace DigitalOps.Authority.Attributes;
|
||
|
|
||
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
|
||
|
public class AllowGuestAttribute : System.Attribute
|
||
|
{
|
||
|
public AllowGuestAttribute()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|