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.

14 line
261B

  1. namespace Campaign_Tracker.Server;
  2. public class WeatherForecast
  3. {
  4. public DateOnly 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. }

Powered by TurnKey Linux.