namespace TorchRemote.Models.Responses;
public record PlayerResponse(ulong ClientId, string Name, PlayerPromoteLevel PromoteLevel);
public enum PlayerPromoteLevel
{
/// Normal players
None,
/// Can edit scripts when the scripter role is enabled
Scripter,
///
/// Can kick and ban players, has access to 'Show All Players' option in Admin Tools menu
///
Moderator,
/// Has access to Space Master tools
SpaceMaster,
/// Has access to Admin tools
Admin,
/// Admins listed in server config, cannot be demoted
Owner,
}