dot-net/WeatherForecast.cs

13 lines
242 B
C#
Raw Permalink Normal View History

2025-01-11 21:20:05 +00:00
namespace Trazo;
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; }
}