init of web and api projects

This commit is contained in:
2026-03-09 01:26:55 +01:00
parent 40725a3f38
commit 4c064776b1
35 changed files with 5104 additions and 0 deletions

View File

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