2025-02-12 08:43:33 +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>();
}