Asp.Net_Single_Page_App/Single_Page_Anwendung/WeatherForecast.cs

16 lines
306 B
C#
Raw Normal View History

2022-05-16 12:46:57 +02:00
using System;
namespace Aps_Single_Page_Anwendung
{
public class WeatherForecast
{
public DateTime Date { get; set; }
public int TemperatureC { get; set; }
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
public string Summary { get; set; }
}
}