tgstation-server 6.19.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
RightsConditional{TRights}.cs
Go to the documentation of this file.
1using System;
2
3using Microsoft.AspNetCore.Authorization;
4
6{
11 public abstract class RightsConditional<TRights> : IAuthorizationRequirement
12 where TRights : Enum
13 {
19 public abstract bool Evaluate(TRights rights);
20 }
21}
bool Evaluate(TRights rights)
Test if the RightsConditional<TRights> is satified for the given rights .