src/app/user.ts
Properties |
correct_timeline |
correct_timeline:
|
Type : string
|
email:
|
Type : string
|
id |
id:
|
Type : number
|
img_url |
img_url:
|
Type : string
|
n_attempts |
n_attempts:
|
Type : number
|
n_files |
n_files:
|
Type : number
|
name |
name:
|
Type : string
|
password |
password:
|
Type : string
|
rating |
rating:
|
Type : number
|
username |
username:
|
Type : string
|
export interface User {
id: number;
username: string;
name: string;
password: string;
email: string;
img_url: string;
n_attempts: number;
n_files: number;
correct_timeline: string;
rating: number;
}