init commit
This commit is contained in:
12
Models/WeatherInfo.cs
Normal file
12
Models/WeatherInfo.cs
Normal file
@ -0,0 +1,12 @@
|
||||
namespace MemphisWeatherApp.Models
|
||||
{
|
||||
public class WeatherInfo
|
||||
{
|
||||
public string City { get; set; } = string.Empty;
|
||||
public double Temperature { get; set; }
|
||||
public string Description { get; set; } = string.Empty;
|
||||
public int Humidity { get; set; }
|
||||
public double WindSpeed { get; set; }
|
||||
public string Icon { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user