edit and delete changes

This commit is contained in:
2023-05-07 12:15:47 +02:00
parent ccdd691ec6
commit cd79fed789
5 changed files with 19 additions and 14 deletions

View File

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