123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection.Emit;
- using System.Text;
- namespace WpfTest1.SQLite
- {
- public class QuestionAnswerPair
- {
- public Question question;
- public List<Answer> answers;
- public QuestionAnswerPair(Question q, List<Answer> a)
- {
- question = q;
- answers = a;
- }
- }
- }
|