src/app/core/models/user.ts
Properties |
email:
|
Type : string
|
|
Defined in src/app/core/models/user.ts:3
|
| first_name |
first_name:
|
Type : string
|
|
Defined in src/app/core/models/user.ts:4
|
| id |
id:
|
Type : string
|
|
Defined in src/app/core/models/user.ts:2
|
| last_name |
last_name:
|
Type : string
|
|
Defined in src/app/core/models/user.ts:5
|
| token |
token:
|
Type : string
|
|
Defined in src/app/core/models/user.ts:6
|
export class User {
id: string;
email: string;
first_name: string;
last_name: string;
token: string;
}