7 lines
158 B
TypeScript
7 lines
158 B
TypeScript
|
import {RestLinks} from "~/repositories/models/rest-response.model";
|
||
|
|
||
|
export interface Question extends RestLinks {
|
||
|
label: string;
|
||
|
description: string;
|
||
|
}
|