2026-05-15 15:26:46 +08:00
|
|
|
namespace Avalonia_EFCore.Models
|
2026-04-23 17:25:31 +08:00
|
|
|
{
|
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|