1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2025-06-20 08:35:17 +00:00

Can set new survey attribute

This commit is contained in:
2020-05-17 18:25:15 +02:00
parent 15b6315de8
commit c4a507e25c
3 changed files with 7 additions and 3 deletions

View File

@ -8,7 +8,8 @@ export interface NewSurveyBuilder {
postID?: number,
userID: number,
question: string,
choices: Array<string>
choices: Array<string>,
allowNewChoices: boolean
}
export class NewSurvey implements NewSurveyBuilder {
@ -16,6 +17,7 @@ export class NewSurvey implements NewSurveyBuilder {
userID: number;
question: string;
choices: string[];
allowNewChoices: boolean;
public constructor(info: NewSurveyBuilder) {
for (const key in info) {