UserSelection.cs 561 B

123456789101112131415161718192021222324252627
  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 UserSelection
  9. {
  10. public int q_id { get; set; }
  11. public int a_id { get; set; }
  12. //public string selection_content { get; set; }
  13. public UserSelection(int q)
  14. {
  15. q_id = q;
  16. }
  17. public UserSelection(int q, int a)
  18. {
  19. q_id = q;
  20. a_id = a;
  21. }
  22. public UserSelection()
  23. {
  24. }
  25. }
  26. }