using System; using System.Collections.Generic; using System.Linq; using System.Reflection.Emit; using System.Text; namespace WpfTest1.SQLite { public class Question { public int q_id { get; set; } public int q_type { get; set; } //1->filter; 2->evaluation public int q_number { get; set; } public string q_content { get; set; } public int filter_a_id { get; set; } } }