use List instead of IList, remove "List" from method names. remove unnecessary using statements

This commit is contained in:
sbwalker
2024-06-11 10:38:44 -04:00
parent b27f80ef87
commit 27356ef747
11 changed files with 23 additions and 32 deletions

View File

@ -4,7 +4,7 @@ namespace Oqtane.Models
{
public class SearchResults
{
public IList<SearchResult> Results { get; set; }
public List<SearchResult> Results { get; set; }
public int TotalResults { get; set; }
}