agregado api ficheros

This commit is contained in:
2025-12-12 13:09:16 +01:00
parent fe2dd8b793
commit 2fbbc68dbd
9 changed files with 152 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
namespace APIFicheros;
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; }
}