Refactor setting arrays to sets (#16058)

Co-authored-by: Bjarke Berg <mail@bergmania.dk>
This commit is contained in:
Ronald Barendse
2024-12-02 15:50:23 +01:00
committed by GitHub
parent 303758d1b2
commit 0d1cdd1bb4
23 changed files with 107 additions and 98 deletions

View File

@@ -6,5 +6,5 @@ public class HelpPageSettings
/// <summary>
/// Gets or sets the allowed addresses to retrieve data for the content dashboard.
/// </summary>
public string[]? HelpPageUrlAllowList { get; set; }
public ISet<string> HelpPageUrlAllowList { get; set; } = new HashSet<string>();
}