feat: add web api project

This commit is contained in:
2021-06-28 22:38:18 -04:00
parent a2f5e96ee6
commit fba86347f7
9 changed files with 225 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using System;
namespace TetrisClone.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; }
}
}