funky-framadate-front/src/app/core/models/poll-user-answers.model.ts

7 lines
250 B
TypeScript
Raw Normal View History

2020-05-12 19:16:23 +02:00
import { ResponseType } from '../enums/response-type.enum';
import { Choice } from './choice.model';
export class PollUserAnswers {
constructor(public pseudo: string, public token: string, public responsesByChoices: Map<Choice, ResponseType>) {}
}