export class Vote { public choice_id: number = 0; public value: string = ''; // valeur de réponse constructor(choice_id?) { if (choice_id) { this.choice_id = choice_id; } } }