Files
KonSoft.Clean/gateways/KonSoft.PublicGateway/WeatherForecast.cs
2025-09-08 14:15:45 +08:00

14 lines
288 B
C#

namespace KonSoft.PublicGateway
{
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; }
}
}