diff --git a/Controllers/GamesController.cs b/Controllers/GamesController.cs index 827eaf0..4c1362c 100644 --- a/Controllers/GamesController.cs +++ b/Controllers/GamesController.cs @@ -1,5 +1,4 @@ using System.Collections.Generic; -using System.Linq; using Microsoft.AspNetCore.Mvc; using TestApplication.Models; @@ -21,7 +20,7 @@ namespace TestApplication.Controllers } [HttpGet] - public IEnumerable GetGames_List() + public ActionResult> GetGames_List() { return GetGames(); }