init project

This commit is contained in:
2023-06-02 16:38:19 +02:00
parent ffdd273b41
commit 5aa09670bc
8 changed files with 158 additions and 0 deletions

13
AB-API/WeatherForecast.cs Normal file
View File

@@ -0,0 +1,13 @@
namespace AB_API
{
public class WeatherForecast
{
public DateTime Date { get; set; }
public int TemperatureC { get; set; }
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
public string? Summary { get; set; }
}
}