mirror of
https://github.com/farcasclaudiu/LearnCollectInst.git
synced 2026-06-22 05:01:09 +03:00
13 lines
304 B
C#
Executable File
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; }
|
|
}
|
|
} |