From fcd89afeb5aff01599d536056602fe292e774454 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Troja=C5=84ski?= <80624809+enviGit@users.noreply.github.com> Date: Tue, 21 Feb 2023 03:02:45 +0100 Subject: [PATCH] Date string format changed --- WeatherProphet/WeatherForecast.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WeatherProphet/WeatherForecast.cs b/WeatherProphet/WeatherForecast.cs index 9cc6daf..cf1d250 100644 --- a/WeatherProphet/WeatherForecast.cs +++ b/WeatherProphet/WeatherForecast.cs @@ -9,7 +9,7 @@ public class WeatherForecast public string Weather { get; set; } public string ImageUrl { get; set; } public string DayOfWeek { get { return Date.ToString("dddd"); } } - public string FormattedDate { get { return Date.ToString("dd/MM/yyyy HH:mm"); } } + public string FormattedDate { get { return Date.ToString("dd/MM/yyyy"); } } public WeatherForecast(DateTime date, string weather, double temperature, string imageUrl) {