using System.Collections.Generic; namespace ManagerService.DTOs { public class ParcoursDTO : SectionDTO { public bool showMap { get; set; } public string? baseSectionMapId { get; set; } public List guidedPaths { get; set; } } }