25 lines
587 B
C#
25 lines
587 B
C#
using System.Collections.Generic;
|
|
|
|
namespace DefaultNamespace.Dto
|
|
{
|
|
public class ActionData
|
|
{
|
|
public string Description { get; set; }
|
|
public int Score { get; set; }
|
|
public bool IsSequential { 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; }
|
|
}
|
|
} |