Question.cs 468 B

1234567891011121314151617
  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_title { get; set; }
  14. public string q_content { get; set; }
  15. public int prior_a_id { get; set; }
  16. }
  17. }