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; } } }