BackEnd #3

Merged
onsaliyo merged 11 commits from BackEnd into master 2021-03-31 13:01:27 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit de5a925e38 - Show all commits

View File

@ -16,9 +16,9 @@ export class LoginService {
constructor(private apiService: ApiService, private router: Router) {
this.user = {
id: 0,
discotecaId: 0,
userType: 0,
username: '',
password: ''
};
}

View File

@ -1,6 +1,6 @@
export interface User {
id: number;
discotecaId: number;
userType: number;
username: string;
password: string;
}