Store whitelist as hashset not list

This commit is contained in:
Chomp
2025-02-17 17:00:58 +00:00
parent 169e1460bb
commit 054074c51f
@@ -478,7 +478,7 @@ public record PackDetails
* item types to allow being a pack
*/
[JsonPropertyName("itemTypeWhitelist")]
public List<string> ItemTypeWhitelist
public HashSet<string> ItemTypeWhitelist
{
get;
set;