Latest stuff

This commit is contained in:
2024-11-04 09:01:29 -06:00
parent ac880d01b7
commit 2ca61de9d8
12 changed files with 521 additions and 0 deletions

12
WeatherForecast.cs Normal file
View File

@@ -0,0 +1,12 @@
namespace forgetmenot_azure;
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; }
}