This commit is contained in:
2026-04-19 12:22:24 +03:00
commit 4ffd3433f9
14 changed files with 226 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
namespace GymLogAI.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; }
}