WIP: DataSets Module
This commit is contained in:
10
Frontend/src/app/models/user.model.ts
Normal file
10
Frontend/src/app/models/user.model.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
export class User {
|
||||
id!: string;
|
||||
email!: string;
|
||||
userName!: string;
|
||||
googleCredentials!: string;
|
||||
avatar?: string;
|
||||
constructor(input: any) {
|
||||
Object.assign(this, input)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user