ConGroups are gone. Long live admin flags in content.
This commit is contained in:
18
Content.Server/Administration/AdminRank.cs
Normal file
18
Content.Server/Administration/AdminRank.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Content.Shared.Administration;
|
||||
|
||||
#nullable enable
|
||||
|
||||
namespace Content.Server.Administration
|
||||
{
|
||||
public sealed class AdminRank
|
||||
{
|
||||
public AdminRank(string name, AdminFlags flags)
|
||||
{
|
||||
Name = name;
|
||||
Flags = flags;
|
||||
}
|
||||
|
||||
public string Name { get; }
|
||||
public AdminFlags Flags { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user