Files
Progetto-m152-Angular/src/app/interface/UserEntity.ts
2023-04-28 13:46:06 +02:00

7 lines
110 B
TypeScript

export interface UserEntity {
id: number;
name: string;
username: string;
password: string;
}