using System; using System.Collections.Generic; namespace ManagerService.DTOs { public class ProgrammeBlockDTO { public string Id { get; set; } public List Title { get; set; } public List Description { get; set; } public DateTime StartTime { get; set; } public DateTime EndTime { get; set; } public List MapAnnotations { get; set; } } }