src/app/models/progression-exercise-statement.ts
| award |
award: |
| passed |
passed: |
| question |
question: |
| timestamp |
timestamp: |
| vTimer |
vTimer: |
export class ProgressionExerciseStatement {
question: string | number;
award: string;
passed: number;
timestamp: string;
vTimer: number;
}