This commit is contained in:
2025-10-13 17:07:12 +08:00
parent 5ac2a859f0
commit 848e18e057
67 changed files with 8950 additions and 1221 deletions
+13
View File
@@ -0,0 +1,13 @@
namespace IM_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; }
}
}