namespace Jellyfin.Api.Enums { /// /// Enum for user roles used in the authentication and authorization for the API. /// public enum UserRole { /// /// Guest user. /// Guest = 0, /// /// Regular user with no special privileges. /// User = 1, /// /// Administrator user with elevated privileges. /// Administrator = 2 } }