Add ScanData Controller

This commit is contained in:
Tim Wundenberg
2021-07-11 10:14:43 +02:00
parent 0cf75695b4
commit f8e2e08886
8 changed files with 260 additions and 0 deletions

View File

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