sharp-chat/SharpChatCommon/Auth/AuthResult.cs

9 lines
228 B
C#

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