using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Manager.Interfaces.Models { public class CityData { //[JsonProperty("lat")] public double Lat { get; set; } //[JsonProperty("lon")] public double Lon { get; set; } } }