hrms-api-report-v1/WeatherForecast.cs
Suphonchai Phoonsawat 5cfdd1561d first commit
2023-04-16 17:59:59 +07:00

13 lines
No EOL
288 B
C#

namespace BMA.EHR.Report.Service
{
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; }
}
}