Files
hooks/CommitHookTest/OpenID-API/WeatherForecast.cs
Karsten Jeppesen a8ae6f7b18 Should fail
2026-08-28 08:35:19 +02:00

14 lines
277 B
C#

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