Gerações NIF NISS

This commit is contained in:
SECUNDIS\masantos
2024-04-10 19:42:13 +01:00
parent 2b99972e01
commit be60a4df8e
14 changed files with 442 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
namespace GeradoresWS
{
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; }
}
}