Skip to content
Snippets Groups Projects
Commit 55d9ba6f authored by Lukas Mauß's avatar Lukas Mauß
Browse files

Adjust model 'answer-option' to backend implementation

parent 0100f851
No related merge requests found
export class AnswerOption { export class AnswerOption {
label: string; label: string;
points: string; points: number;
constructor(label: string, points: string) { constructor(label: string, points: number) {
this.label = label; this.label = label;
this.points = points; this.points = points;
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment