funky-framadate-front/src/app/core/models/answer.model.ts

7 lines
206 B
TypeScript
Raw Normal View History

2020-05-05 18:17:12 +02:00
import { Response } from '../enums/response.enum';
import { Choice } from './choice.model';
export class Answer {
2020-05-05 18:17:12 +02:00
constructor(public author: string, public choice: Choice, public response: Response) {}
}