2022-10-07 14:15:53 +00:00
|
|
|
import {RestLinks} from "~/repositories/models/rest-response.model";
|
2022-11-02 10:16:17 +00:00
|
|
|
import {Question} from "~/repositories/models/question.model";
|
2022-10-07 14:15:53 +00:00
|
|
|
|
|
|
|
export interface Axe extends RestLinks {
|
|
|
|
identifier: number;
|
|
|
|
shortTitle: string;
|
2022-11-02 10:16:17 +00:00
|
|
|
description: string;
|
2022-10-07 14:15:53 +00:00
|
|
|
title: string;
|
|
|
|
color: string;
|
|
|
|
}
|
2022-11-02 10:16:17 +00:00
|
|
|
|
|
|
|
export interface AxeWithQuestions extends RestLinks {
|
|
|
|
identifier: number;
|
|
|
|
shortTitle: string;
|
|
|
|
description: string;
|
|
|
|
title: string;
|
|
|
|
color: string;
|
|
|
|
questions: Question[];
|
|
|
|
}
|