27 lines
422 B
C#
27 lines
422 B
C#
|
|
namespace YiLiao.SiBuChuZhen
|
|
{
|
|
public class QuestionData
|
|
{
|
|
//序号
|
|
|
|
public int id;
|
|
|
|
//状态
|
|
|
|
public string state;
|
|
|
|
//习题题目
|
|
|
|
public string question;
|
|
|
|
//习题选项
|
|
|
|
public string option;
|
|
|
|
//习题答案
|
|
|
|
public string answer;
|
|
|
|
//习题解析
|
|
|
|
public string analysis;
|
|
|
|
//习题分数
|
|
|
|
public string score;
|
|
|
|
//计分类别
|
|
|
|
public string type;
|
|
|
|
//备注
|
|
|
|
public string remark;
|
|
|
|
|
|
}
|
|
}
|