Video_Depth / WeatherForecast.cs
DannyChi's picture
Upload 90 files
e402825 verified
raw
history blame contribute delete
296 Bytes
namespace ai_server_docker
{
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; }
}
}