aspnet-template/WeatherForecast.cs

13 lines
254 B
C#
Raw Normal View History

2025-01-24 11:27:32 +00:00
namespace MyApp;
public class WeatherForecast
{
public DateOnly Date { get; set; }
public int TemperatureC { get; set; }
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
public string? Summary { get; set; }
}