You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
751 B
31 lines
751 B
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; }
|
|
}
|
|
}
|
|
|