dot-net/WeatherForecast.cs

13 lines
255 B
C#
Raw Normal View History

2025-01-10 22:01:50 +00:00
namespace csharp;
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; }
}