import { Response } from '../enums/response.enum'; import { Choice } from './choice.model'; export class Answer { constructor(public author: string, public choice: Choice, public response: Response) {} }