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

7 lines
158 B
TypeScript
Raw Normal View History

2022-10-07 14:15:53 +00:00
import {RestLinks} from "~/repositories/models/rest-response.model";
export interface Question extends RestLinks {
label: string;
description: string;
}