13 lines
269 B
C#
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>();
|
|
}
|