manager-service/ManagerService/DTOs/MapAnnotationDTO.cs

20 lines
648 B
C#

using NetTopologySuite.Geometries;
using System.Collections.Generic;
using ManagerService.Data.SubSection;
namespace ManagerService.DTOs
{
public class MapAnnotationDTO
{
public string Id { get; set; }
public List<TranslationDTO> Type { get; set; }
public List<TranslationDTO> Label { get; set; }
public SectionEvent.GeometryType GeometryType { get; set; }
public Geometry Geometry { get; set; }
public string PolyColor { get; set; }
public string Icon { get; set; }
public string IconResourceId { get; set; }
public ResourceDTO IconResource { get; set; }
}
}