shopping-assistant-web-client/ShoppingAssistantWebClient.Web/Data/WeatherForecast.cs
2023-10-17 00:42:53 +00:00

13 lines
284 B
C#

namespace ShoppingAssistantWebClient.Web.Data;
public class WeatherForecast
{
public DateOnly Date { get; set; }
public int TemperatureC { get; set; }
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
public string? Summary { get; set; }
}