2025-02-11 17:11:14 +08:00

13 lines
271 B
C#

using System;
using System.Collections.Generic;
[Serializable]
public class Step
{
public string name;
public string state;
public double maxScore;
public double score;
public string type;
public List<Question> questions = new List<Question>();
}