WeatherDashboard/WeatherDashboard.Web/Views/Home/Index.cshtml

13 lines
194 B
Plaintext
Raw Normal View History

2023-02-10 03:33:02 +00:00
@model WeatherSet
@{
2023-02-09 02:30:14 +00:00
ViewData["Title"] = "Home Page";
}
2023-02-10 03:33:02 +00:00
<div>
@Model.Location.Region, @Model.Location.Name
</div>
<div>
@Model.Current.LastUpdated @Model.Current.Temperature
2023-02-09 02:30:14 +00:00
</div>