mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2026-05-26 12:38:03 +00:00
BETTERZON-75: Adding backend functions to enable user registration
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
export interface User {
|
||||
user_id: number;
|
||||
username: string;
|
||||
email: string;
|
||||
password_hash: string;
|
||||
hashing_salt: string;
|
||||
registration_date: Date;
|
||||
last_login_date: Date;
|
||||
}
|
||||
Reference in New Issue
Block a user