progress for login feature

This commit is contained in:
2023-05-04 15:46:33 +02:00
parent 2d0af1f90a
commit a5ad7ce97d
3 changed files with 75 additions and 9 deletions

View File

@@ -1,8 +1,6 @@
export interface UserEntity {
id?: number;
name: string;
username: string;
password: string;
admin?: boolean;
}