20 lines
636 B
C#
20 lines
636 B
C#
using System.Collections.Generic;
|
|
using ManagerService.Data.SubSection;
|
|
using Manager.DTOs;
|
|
|
|
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 GeometryDTO geometry { get; set; }
|
|
public string polyColor { get; set; }
|
|
public string icon { get; set; }
|
|
public string iconResourceId { get; set; }
|
|
public ResourceDTO iconResource { get; set; }
|
|
}
|
|
}
|