WaiXie_QuestionSystem/Assets/Script/UI/Panel/SummaryInfo.cs

34 lines
535 B
C#
Raw Normal View History

2023-12-10 12:28:20 +08:00
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;
}
}