init commit

This commit is contained in:
2025-04-07 11:45:14 -05:00
commit 644ef8d5c8
30 changed files with 1422 additions and 0 deletions

12
Models/WeatherInfo.cs Normal file
View 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;
}
}