using System.Collections.Generic; namespace ManagerService.DTOs { public class GuidedPathDTO { public string id { get; set; } public string instanceId { get; set; } public List title { get; set; } public List description { get; set; } public string? sectionMapId { get; set; } public string? sectionEventId { get; set; } public bool isLinear { get; set; } public bool requireSuccessToAdvance { get; set; } public bool hideNextStepsUntilComplete { get; set; } public int order { get; set; } public List steps { get; set; } } }