2025-10-09 17:36:27 +08:00

13 lines
269 B
C#

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