src/app/models/data-verifications.ts
| filename |
filename: |
| id |
id: |
| size |
size: |
| transcript |
transcript: |
| type |
type: |
| valid |
valid: |
export class DataVerification{
id:number
valid : 0 | 1;
type: "adulte" | "enfant";
size:string;
filename:string;
transcript:string;
}