123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection.Emit;
- using System.Text;
- namespace WpfTest1.SQLite
- {
- public class UserSelection
- {
- public int q_id { get; set; }
- public int a_id { get; set; }
- //public string selection_content { get; set; }
- public UserSelection(int q)
- {
- q_id = q;
- }
- public UserSelection(int q, int a)
- {
- q_id = q;
- a_id = a;
- }
- public UserSelection()
- {
- }
- }
- }
|