flower-story/Server/WeatherForecast.cs
2023-05-23 08:37:20 +08:00

12 lines
263 B
C#

namespace Blahblah.FlowerStory.Server;
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; }
}