add asp.net project

This commit is contained in:
Tim Wundenberg
2021-07-07 20:46:26 +02:00
parent ba17e43cbb
commit 8a21bb31ff
15 changed files with 290 additions and 1 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; }
}
}