mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-19 15:29:18 +00:00
9 lines
171 B
TypeScript
9 lines
171 B
TypeScript
export interface User {
|
|
user_id: number;
|
|
username: string;
|
|
email: string;
|
|
password_hash: string;
|
|
registration_date: Date;
|
|
last_login_date: Date;
|
|
}
|