This commit is contained in:
c.girardi
2024-03-11 16:24:14 +01:00
parent 6217054aa5
commit 1ae0f2f8b0

View File

@@ -27,7 +27,7 @@ app.MapGet("/weatherforecast", () =>
new WeatherForecast
(
DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
Random.Shared.Next(-20, 55),
Random.Shared.Next(-21, 55),
summaries[Random.Shared.Next(summaries.Length)]
))
.ToArray();