ISettingsInterface.cs
1 // Copyright (c) Microsoft Corporation 2 // The Microsoft Corporation licenses this file to you under the MIT license. 3 // See the LICENSE file in the project root for more information. 4 5 using System; 6 using System.Collections.Generic; 7 using System.Linq; 8 using System.Text; 9 using System.Threading.Tasks; 10 11 namespace Microsoft.CmdPal.Ext.Registry.Helpers; 12 13 public interface ISettingsInterface 14 { 15 // Add registry-specific settings methods here if needed 16 // For now, this can be empty if there are no settings for Registry 17 }