From 3710fed9e257daecd4e689faac35a5f67e33515c Mon Sep 17 00:00:00 2001 From: Marimuthu Date: Thu, 15 Sep 2022 13:16:03 +0530 Subject: [PATCH] Changed the namespace of ISettingsStorageHelper interface inline with other helpers. Issue link : https://github.com/CommunityToolkit/dotnet/issues/403 --- .../Extensions/ISettingsStorageHelperExtensions.cs | 2 +- .../Helpers/ObjectStorage/ISettingsStorageHelper.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CommunityToolkit.Common/Extensions/ISettingsStorageHelperExtensions.cs b/CommunityToolkit.Common/Extensions/ISettingsStorageHelperExtensions.cs index a5e1cd6a4..bcdc9f92b 100644 --- a/CommunityToolkit.Common/Extensions/ISettingsStorageHelperExtensions.cs +++ b/CommunityToolkit.Common/Extensions/ISettingsStorageHelperExtensions.cs @@ -3,7 +3,7 @@ // See the LICENSE file in the project root for more information. using System.Collections.Generic; -using CommunityToolkit.Helpers; +using CommunityToolkit.Common.Helpers; namespace CommunityToolkit.Common.Extensions; diff --git a/CommunityToolkit.Common/Helpers/ObjectStorage/ISettingsStorageHelper.cs b/CommunityToolkit.Common/Helpers/ObjectStorage/ISettingsStorageHelper.cs index 61b4221f7..69e4bdc3f 100644 --- a/CommunityToolkit.Common/Helpers/ObjectStorage/ISettingsStorageHelper.cs +++ b/CommunityToolkit.Common/Helpers/ObjectStorage/ISettingsStorageHelper.cs @@ -2,7 +2,7 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -namespace CommunityToolkit.Helpers; +namespace CommunityToolkit.Common.Helpers; /// /// Service interface used to store data using key value pairs.