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

12 lines
258 B
C#

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