Create User Login/Logout

Took 3 hours 40 minutes
This commit is contained in:
Lucàs
2023-03-22 15:36:20 +01:00
parent f1e39e12e9
commit 843b5fcda8
18 changed files with 3351 additions and 2620 deletions
+7
View File
@@ -0,0 +1,7 @@
export class LoginData {
constructor(
public email: string = "",
public password: string = ""
) {}
}