import { BaseModel } from './BaseModel'; import { SurveyQuestion } from './SurveyQuestion'; export interface SurveyQuestionOption extends BaseModel { question: SurveyQuestion; value: string; }