init commit

This commit is contained in:
Claudiu Farcas
2022-10-05 09:07:14 +03:00
commit bd1826f144
19 changed files with 842 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
namespace LearnCollectInst.Api.Model
{
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; }
}
}