29 lines
566 B
C#
29 lines
566 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
[Serializable]
|
|
public class ScoreModel
|
|
{
|
|
public string time;
|
|
public float score;
|
|
public List<ScoreInfo> stepList = new List<ScoreInfo>();
|
|
}
|
|
[Serializable]
|
|
public class ScoreInfo
|
|
{
|
|
public string stepName;
|
|
public string testPoint;
|
|
/// <summary>
|
|
/// 得分
|
|
/// </summary>
|
|
public float setScore;
|
|
/// <summary>
|
|
/// 总分
|
|
/// </summary>
|
|
public float defaultScore;
|
|
/// <summary>
|
|
/// 是否是关键步骤
|
|
/// </summary>
|
|
public bool isKey;
|
|
}
|