WeatherDashboard/WeatherDashboard.Web/Views/Home/Index.cshtml
2023-02-09 22:33:02 -05:00

13 lines
194 B
Plaintext

@model WeatherSet
@{
ViewData["Title"] = "Home Page";
}
<div>
@Model.Location.Region, @Model.Location.Name
</div>
<div>
@Model.Current.LastUpdated @Model.Current.Temperature
</div>