public void setQuestion(QuizQuestion Question)
 {
     this.Question = Question;
 }
 public QuestionPacket(int Id, QuizQuestion Question, List<QuizElement> Options)
 {
     this.Id = Id;
     this.Question = Question;
     this.Options = Options;
 }