123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection.Emit;
- using System.Text;
- namespace WpfTest1.SQLite
- {
- public class Answer
- {
- public int a_id { get; set; }
- public int q_id { get; set; } //1->filter; 2->evaluation
- public int a_value { get; set; }
- public int a_pain { get; set; }
- public int next_q_id { get; set; }
- public string a_content { get; set; }
- public string a_description_text { get; set; }
- public string a_description_img { get; set; }
- public string a_suggestion_text { get; set; }
- public string a_suggestion_img { get; set; }
- }
- }
|