18 lines
575 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();
}
}