You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
442 B
13 lines
442 B
import { AnswerGranularity } from '../enums/answer-granularity.enum'; |
|
|
|
export class PollConfig { |
|
constructor( |
|
public allowSeveralHours = true, |
|
public isVisibleToAnyoneWithTheLink: boolean = true, |
|
public answerType: AnswerGranularity = AnswerGranularity.BASIC, |
|
public creationDate: Date = new Date(), |
|
public expirationDate?: Date, |
|
public canVotersModifyTheirAnswers = true, |
|
public isProtectedByPassword: boolean = false |
|
) {} |
|
}
|
|
|