mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-19 15:29:18 +00:00
11 lines
222 B
TypeScript
11 lines
222 B
TypeScript
export interface Session {
|
|
session_id: number;
|
|
session_key: string;
|
|
session_key_hash: string;
|
|
createdDate?: Date;
|
|
lastLogin?: Date;
|
|
validUntil?: Date;
|
|
validDays?: number;
|
|
last_IP: string;
|
|
}
|