using System.Collections.Generic; using ManagerService.Data.SubSection; using Manager.DTOs; namespace ManagerService.DTOs { public class MapAnnotationDTO { public string id { get; set; } public List type { get; set; } public List label { get; set; } public SectionEvent.GeometryType geometryType { get; set; } public GeometryDTO geometry { get; set; } public string polyColor { get; set; } public string icon { get; set; } public string iconResourceId { get; set; } public ResourceDTO iconResource { get; set; } } }