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