| 1 | namespace QuestionService; |
| 2 | |
| 3 | public class WeatherForecast |
| 4 | { |
| 5 | public DateOnly Date { get; set; } |
| 6 | |
| 7 | public int TemperatureC { get; set; } |
| 8 | |
| 9 | public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); |
| 10 | |
| 11 | public string? Summary { get; set; } |
| 12 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…