From 4f51b4c09c259ae7067ae06335af0092813f04ec Mon Sep 17 00:00:00 2001 From: "H. Utku Maden" Date: Tue, 8 Sep 2026 21:32:40 +0300 Subject: [PATCH] Move HashList to the right namespace (even if unused) --- Dashboard.Common/{ => Collections}/HashList.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename Dashboard.Common/{ => Collections}/HashList.cs (94%) diff --git a/Dashboard.Common/HashList.cs b/Dashboard.Common/Collections/HashList.cs similarity index 94% rename from Dashboard.Common/HashList.cs rename to Dashboard.Common/Collections/HashList.cs index 3931a70..7c0a782 100644 --- a/Dashboard.Common/HashList.cs +++ b/Dashboard.Common/Collections/HashList.cs @@ -1,7 +1,6 @@ using System.Collections; -using System.Collections.Generic; -namespace Dashboard +namespace Dashboard.Collections { public class HashList : IReadOnlyList where T : notnull