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 List ParcoursIds { get; set; } public List Programme { get; set; } = new(); } }