Files
DiunaBI/Frontend/src/app/models/user.model.ts

10 lines
205 B
TypeScript
Raw Normal View History

2022-11-29 19:21:24 +01:00
export class User {
id!: string;
email!: string;
userName!: string;
2022-12-06 12:27:09 +01:00
googleCredentials!: string;
avatar?: string;
2022-11-29 19:21:24 +01:00
constructor(input: any) {
Object.assign(this, input)
}
}