add project files
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-04-08 00:30:58 +02:00
parent c514e6d06e
commit 08de6abddc
41 changed files with 658 additions and 163 deletions

15
WeatherForecast.cs Normal file
View File

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