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

18 lines
577 B
C#

using ManagerService.DTOs;
using System;
using System.Collections.Generic;
using static ManagerService.Data.SubSection.SectionEvent;
namespace Manager.DTOs
{
public class SectionEventDTO : SectionDTO
{
public DateTime? StartDate { get; set; }
public DateTime? EndDate { get; set; }
public string? BaseSectionMapId { get; set; }
public List<string> ParcoursIds { get; set; }
public List<MapAnnotationDTO> GlobalMapAnnotations { get; set; } = new();
public List<ProgrammeBlock> Programme { get; set; } = new();
}
}