blazor-pw-test/Models/WeatherInfo.cs
2025-04-07 11:45:14 -05:00

13 lines
394 B
C#

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