mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2026-05-26 12:38:03 +00:00
10 lines
197 B
TypeScript
10 lines
197 B
TypeScript
export interface User {
|
|
user_id: number;
|
|
username: string;
|
|
email: string;
|
|
password_hash: string;
|
|
hashing_salt: string;
|
|
registration_date: Date;
|
|
last_login_date: Date;
|
|
}
|