boussole-pluss/frontend/repositories/models/question.model.ts

8 lines
172 B
TypeScript

import {RestLinks} from "~/repositories/models/rest-response.model";
export interface Question extends RestLinks {
id: number;
label: string;
description: string;
}