Use concrete types
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-06-24 19:28:55 +02:00
parent 8681247e76
commit ab32be98a6
20 changed files with 48 additions and 48 deletions

View File

@@ -29,7 +29,7 @@ public static class GetCar
return TypedResults.NotFound();
}
var response = new Response(car.Id.Value, car.Name);
Response response = new Response(car.Id.Value, car.Name);
return TypedResults.Ok(response);
}
}