2023-01-29 11:50:01 -07:00

13 lines
253 B
C#

namespace Normalize.Shared;
public class WeatherForecast
{
public DateOnly Date { get; set; }
public int TemperatureC { get; set; }
public string? Summary { get; set; }
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
}