Base view

This commit is contained in:
2022-11-29 19:21:24 +01:00
parent 7fb5badf30
commit 48bd1e93a4
23 changed files with 4443 additions and 3901 deletions

View File

@@ -0,0 +1,10 @@
export class User {
id!: string;
email!: string;
userName!: string;
googleId!: string;
avatar?: string | ArrayBuffer;
constructor(input: any) {
Object.assign(this, input)
}
}