namespace SharpChat.Auth; public interface AuthResult { string UserId { get; } string UserName { get; } ColourInheritable UserColour { get; } int UserRank { get; } UserPermissions UserPermissions { get; } }