namespace FrontendPlatformUno.DataContracts
{
///
/// A Weather Forecast for a specific date
///
/// Gets the Date of the Forecast.
/// Gets the Forecast Temperature in Celsius.
/// Get a description of how the weather will feel.
public record WeatherForecast(DateOnly Date, int TemperatureC, string? Summary)
{
///
/// Gets the Forecast Temperature in Fahrenheit
///
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
}
}