PIbd-21__Kryukov_A.I._Typog.../TypographyRestApi/WeatherForecast.cs
2024-04-07 21:05:15 +04:00

14 lines
284 B
C#

namespace TypographyRestApi
{
public class WeatherForecast
{
public DateTime Date { get; set; }
public int TemperatureC { get; set; }
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
public string? Summary { get; set; }
}
}