UserSelection.cs 509 B

1234567891011121314151617181920212223
  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. }
  23. }