added class to represent user

This commit is contained in:
2020-07-21 15:18:53 +02:00
parent 1e9b5817ab
commit f5b7429130
2 changed files with 13 additions and 0 deletions

6
src/app/account/user.ts Normal file
View File

@@ -0,0 +1,6 @@
export class User {
id: number;
username: string;
email: string;
token: string;
}