22 lines
645 B
C#
Raw Normal View History

2025-03-11 15:30:07 +08:00
using System;
using System.Collections.Generic;
[Serializable]
public class ResultInfo
{
public string title;
public int status;
public int score;
public string startTime;
public string endTime;
public int timeUsed;
public int appid;
public string originId;
public List<StepInfo> steps = new List<StepInfo>();
public override string ToString()
{
return "title=" + title + ",status=" + status + ",score = " + score +
",startTime=" + startTime + ",endTime=" + endTime + ",timeUsed=" + timeUsed + ",appid=" + appid +
",originId=" + originId;
}
}