QuestionAnswerPair.cs 401 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Reflection.Emit;
  5. using System.Text;
  6. namespace WpfTest1.SQLite
  7. {
  8. public class QuestionAnswerPair
  9. {
  10. public Question question;
  11. public List<Answer> answers;
  12. public QuestionAnswerPair(Question q, List<Answer> a)
  13. {
  14. question = q;
  15. answers = a;
  16. }
  17. }
  18. }