using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IOTContainer.ViewModel { public class WeatherViewModel { public string area { get; set; } public string temperatureHigh { get; set; } public string city { get; set; } public string temperatureNow { get; set; } public string windPower { get; set; } public string temperatureLow { get; set; } public string weather { get; set; } public string aqi { get; set; } public string humidity { get; set; } public string windDirection { get; set; } public string prov { get; set; } public string pm { get; set; } } }