presentation

This commit is contained in:
2026-02-05 21:07:16 +01:00
parent adf6cac49a
commit 41793f00c1
10 changed files with 142 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
namespace AipsWebApi;
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; }
}