Files
LearnCollectInst/LearnCollectInst.Api/Model/WeatherForecast.cs
T
Claudiu Farcas bd1826f144 init commit
2022-10-05 09:07:14 +03:00

13 lines
304 B
C#
Executable File

namespace LearnCollectInst.Api.Model
{
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; }
}
}