您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }