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