Add empty WebAPI project

This commit is contained in:
2022-11-29 21:25:19 +01:00
parent 48bd1e93a4
commit 7d639ba238
11 changed files with 174 additions and 2 deletions

13
WebAPI/WeatherForecast.cs Normal file
View File

@@ -0,0 +1,13 @@
namespace WebAPI
{
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; }
}
}