Files
Progetto-m152-Angular/src/app/interface/UserEntity.ts
2023-05-07 12:15:47 +02:00

12 lines
187 B
TypeScript

export interface UserEntity {
id: number;
username: string;
password: string;
admin?: boolean;
}
export interface newUser {
username: string;
password: string;
}