Continous Integration in der Praxis Gruppenarbeit
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.

17 lines
353 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace MiniGames.Shared
  5. {
  6. public class WeatherForecast
  7. {
  8. public DateTime Date { get; set; }
  9. public int TemperatureC { get; set; }
  10. public string Summary { get; set; }
  11. public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
  12. }
  13. }