22 lines
645 B
C#
22 lines
645 B
C#
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;
|
|
}
|
|
} |