use List instead of IList, remove "List" from method names. remove unnecessary using statements
This commit is contained in:
@ -14,7 +14,7 @@ namespace Oqtane.Models
|
||||
|
||||
public string Keywords { get; set; }
|
||||
|
||||
public IList<string> EntityNames { get; set; } = new List<string>();
|
||||
public List<string> EntityNames { get; set; } = new List<string>();
|
||||
|
||||
public DateTime BeginModifiedTimeUtc { get; set; }
|
||||
|
||||
|
Reference in New Issue
Block a user