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

@ -31,9 +31,9 @@ namespace Oqtane.Models
public string AdditionalContent { get; set; }
public IList<SearchContentProperty> SearchContentProperties { get; set; }
public List<SearchContentProperty> SearchContentProperties { get; set; }
public IList<SearchContentWord> SearchContentWords { get; set; }
public List<SearchContentWord> SearchContentWords { get; set; }
public override string ToString()
{