12 lines
221 B
C#
12 lines
221 B
C#
using OwnChar.Model;
|
|
|
|
namespace OwnChar;
|
|
|
|
public static class Extensions
|
|
{
|
|
public static bool HasPermission(this UserAccount account, UserType permissions)
|
|
{
|
|
return account.Type >= permissions;
|
|
}
|
|
}
|