You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

WeatherForecast.cs 260B

123456789101112
  1. namespace BlackRock.Reporting.API;
  2. public class WeatherForecast
  3. {
  4. public DateTime Date { get; set; }
  5. public int TemperatureC { get; set; }
  6. public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
  7. public string? Summary { get; set; }
  8. }