Answer.cs 674 B

123456789101112131415161718192021
  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 Answer
  9. {
  10. public int a_id { get; set; }
  11. public int q_id { get; set; } //1->filter; 2->evaluation
  12. public int a_value { get; set; }
  13. public int a_pain { get; set; }
  14. public int next_q_id { get; set; }
  15. public string a_content { get; set; }
  16. public string a_description_text { get; set; }
  17. public string a_description_img { get; set; }
  18. public string a_suggestion_text { get; set; }
  19. public string a_suggestion_img { get; set; }
  20. }
  21. }