lottery/WebApplication1/WeatherForecast.cs
Yevgeniy Ulyantsev a339ae3e5a 1
2025-07-17 15:38:06 +03:00

13 lines
252 B
C#

namespace WebApplication1;
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; }
}