internal PollQuestion(uint Index, string Question, int AType, string[] Answers, string CorrectAnswer) { this.Index = Index; this.Question = Question; this.AType = (PollQuestion.PollAnswerType)AType; this.Answers = Answers.ToList <string>(); this.CorrectAnswer = CorrectAnswer; }
internal PollQuestion(uint Index, string Question, int AType, string[] Answers, string CorrectAnswer) { this.Index = Index; this.Question = Question; this.AType = (PollQuestion.PollAnswerType)AType; this.Answers = Answers.ToList<string>(); this.CorrectAnswer = CorrectAnswer; }