This commit is contained in:
Jöran Malek 2024-02-02 18:46:24 +01:00
commit b01c097562
22 changed files with 1439 additions and 0 deletions

View file

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