9 lines
228 B
C#
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; }
|
|
}
|