using System.Collections.Generic; namespace DefaultNamespace.Dto { public class ActionData { public string Description { get; set; } public float Score { get; set; } public bool IsSequential { get; set; } public bool IsUI{ get; set; } public List TargetObjects { get; set; } } public class StepData { public string StepDescription { get; set; } public float Score { get; set; } public List Actions { get; set; } } public class StepsContainer { public List Steps { get; set; } } }