sharp-chat/SharpChatCommon/Auth/AuthResult.cs

9 lines
258 B
C#

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