first commit
This commit is contained in:
17
myteamwallet_frontend/src/app/model/user.ts
Normal file
17
myteamwallet_frontend/src/app/model/user.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
export interface User {
|
||||
createdAt: string;
|
||||
deletedAt: string;
|
||||
email: string;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
id: number;
|
||||
photo: string;
|
||||
role: Role;
|
||||
status: any;
|
||||
updatedAt: string;
|
||||
}
|
||||
|
||||
export interface Role {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
Reference in New Issue
Block a user