Files
KonSoft.Clean/gateways/KonSoft.PublicGateway/WeatherForecast.cs
2025-10-16 10:30:51 +08:00

12 lines
257 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; }
}