11 lines
252 B
TypeScript
11 lines
252 B
TypeScript
export default interface UserSessionRepresentation {
|
|
id?: string;
|
|
clients?: Record<string, string>;
|
|
ipAddress?: string;
|
|
lastAccess?: number;
|
|
start?: number;
|
|
userId?: string;
|
|
username?: string;
|
|
transientUser?: boolean;
|
|
}
|