This commit is contained in:
Chris Chen
2026-05-25 17:38:23 -07:00
parent d5648315a0
commit 4da8806bfc
8 changed files with 153 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
namespace ROLAC.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; }
}
}