12 lines
280 B
C#
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; }
|
|
}
|
|
}
|