SunJian/WebApi/WeatherForecast.cs

13 lines
243 B
C#
Raw Permalink Normal View History

2023-12-05 19:18:38 +08:00
namespace WebApi;
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; }
}