Settings.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 Microsoft.CmdPal.Ext.Registry.Helpers;
 6  
 7  namespace Microsoft.CmdPal.Ext.Registry.UnitTests;
 8  
 9  public class Settings : ISettingsInterface
10  {
11      public Settings()
12      {
13          // Currently no specific settings for Registry extension
14      }
15  }