1234567891011121314151617 |
- 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_title { get; set; }
- public string q_content { get; set; }
- public int prior_a_id { get; set; }
- }
- }
|