2025-03-06 17:39:08 +01:00

18 lines
343 B
C#

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; }
}
}