using Manager.Interfaces.Models; using System; using System.Collections.Generic; using System.Text; namespace Manager.Interfaces.DTO { public class MapDTO { public int Zoom { get; set; } // Default = 18 public MapType MapType { get; set; } // Default = Hybrid public List Points { get; set; } public string Icon { get; set; } // url to resource id (local) or on internet } public class GeoPointDTO { public int Id { get; set; } public List Title { get; set; } public List Description { get; set; } public string Image { get; set; } // url to resource id (local) or on internet public string ImageType { get; set; } // url or resource public List Text { get; set; } public string Latitude { get; set; } public string Longitude { get; set; } } }