ShanxiKnowledgeBase/SXElectricityInformationAcq.../Assets/Scripts/Dto/StepData.cs

23 lines
531 B
C#

using System.Collections.Generic;
namespace DefaultNamespace.Dto
{
public class ActionData
{
public string Description { get; set; }
public int Score { get; set; }
public List<string> TargetObjects { get; set; }
}
public class StepData
{
public string StepDescription { get; set; }
public int Score { get; set; }
public List<ActionData> Actions { get; set; }
}
public class StepsContainer
{
public List<StepData> Steps { get; set; }
}
}