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