Question.cs 425 B

12345678910111213141516
  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 Question
  9. {
  10. public int q_id { get; set; }
  11. public int q_type { get; set; } //1->filter; 2->evaluation
  12. public int q_number { get; set; }
  13. public string q_content { get; set; }
  14. public int filter_a_id { get; set; }
  15. }
  16. }