From 5738b9b44d069030370bdeba81486e3c9ce2d327 Mon Sep 17 00:00:00 2001 From: Ryan Date: Sat, 18 Mar 2023 13:37:48 -0400 Subject: [PATCH] ints instead of decimal, style changes --- WeatherDashboard.Web/Views/Home/Index.cshtml | 2 +- WeatherDashboard.Web/wwwroot/css/site.css | 1 + WeatherDashboard/Forecast.cs | 8 ++++---- WeatherDashboard/ForecastSummary.cs | 4 ++-- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/WeatherDashboard.Web/Views/Home/Index.cshtml b/WeatherDashboard.Web/Views/Home/Index.cshtml index 874a314..c690010 100644 --- a/WeatherDashboard.Web/Views/Home/Index.cshtml +++ b/WeatherDashboard.Web/Views/Home/Index.cshtml @@ -4,7 +4,7 @@ }
-
@Model.Location.Name, @Model.Location.Region
+ @*
@Model.Location.Name, @Model.Location.Region
*@ Last updated on @Model.Current.LastUpdated
diff --git a/WeatherDashboard.Web/wwwroot/css/site.css b/WeatherDashboard.Web/wwwroot/css/site.css index f553354..f8b4e4a 100644 --- a/WeatherDashboard.Web/wwwroot/css/site.css +++ b/WeatherDashboard.Web/wwwroot/css/site.css @@ -26,6 +26,7 @@ body { .location small { font-size: 14px; + opacity: 0.3; } .degrees { diff --git a/WeatherDashboard/Forecast.cs b/WeatherDashboard/Forecast.cs index 58fe110..8a8ace9 100644 --- a/WeatherDashboard/Forecast.cs +++ b/WeatherDashboard/Forecast.cs @@ -12,16 +12,16 @@ namespace WeatherDashboard public DateTime? Time { get; set; } [JsonProperty("temp_f")] - public decimal Temperature { get; set; } + public int Temperature { get; set; } [JsonProperty("feelslike_f")] - public decimal FeelsLike { get; set; } + public int FeelsLike { get; set; } [JsonProperty("humidity")] - public decimal Humidity { get; set; } + public int Humidity { get; set; } [JsonProperty("wind_mph")] - public decimal WindSpeed { get; set; } + public int WindSpeed { get; set; } [JsonProperty("wind_dir")] public string WindDirection { get; set; } diff --git a/WeatherDashboard/ForecastSummary.cs b/WeatherDashboard/ForecastSummary.cs index 3b4a50f..f870660 100644 --- a/WeatherDashboard/ForecastSummary.cs +++ b/WeatherDashboard/ForecastSummary.cs @@ -9,9 +9,9 @@ namespace WeatherDashboard public string ConditionName { get; set; } [JsonProperty("maxtemp_f")] - public decimal HighTemp { get; set; } + public int HighTemp { get; set; } [JsonProperty("mintemp_f")] - public decimal LowTemp { get; set; } + public int LowTemp { get; set; } } } \ No newline at end of file