34 lines
535 B
C#
34 lines
535 B
C#
using System;
|
|
|
|
namespace Script.UI
|
|
{
|
|
public class SummaryInfo
|
|
{
|
|
//ID
|
|
public string id;
|
|
|
|
// 项目
|
|
public string title;
|
|
|
|
// 科目
|
|
public string subject;
|
|
|
|
//分数
|
|
public int score;
|
|
|
|
// 正确数量
|
|
public int trueCount;
|
|
|
|
// 错误数量
|
|
public int falseCount;
|
|
|
|
// 未作答数量
|
|
public int nullCount;
|
|
|
|
// 正确率
|
|
public string accuracy;
|
|
|
|
// 用时
|
|
public TimeSpan time;
|
|
}
|
|
} |