Files
2020-03-12 19:19:42 +01:00

16 lines
228 B
C#

using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.Text;
namespace ReallifeGamemode.Server.Types
{
public enum GroupRank
{
NONE,
MEMBER,
MANAGER,
OWNER
}
}