.NET template project

This commit is contained in:
kdeng00
2023-09-17 20:48:50 -04:00
parent 48d3cf0ba2
commit f4a6dc1c6a
7 changed files with 142 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
namespace TextSender_API;
public class WeatherForecast
{
public DateOnly Date { get; set; }
public int TemperatureC { get; set; }
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
public string? Summary { get; set; }
}