2026-07-08 17:00:43 +02:00

12 lines
280 B
C#

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