Files
Shadow/WeatherForecast.cs
sherl eb6a8e52c1 chore: initial commit
contains boilerplate code
2025-12-07 23:09:50 +01:00

14 lines
240 B
C#

namespace Shadow
{
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; }
}
}