July 2018
Intermediate to advanced
420 pages
8h 46m
English
Let's start by creating the class to store our user information. By convention, we will name this file user.ts:
Open your Terminal window.
Go to ./Client/src/app and type the following command:
ng g class pages/auth/user
export class User {
name?: string;
email?: string;
password?: string;
constructor() {}
}
Read now
Unlock full access