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; } } }