export interface UserSession {
    id: string;
    username: string;
    userId: string;
    ipAddress: string;
    start: number;
    lastAccess: number;
    clients: object;
}
