IRefreshablePage.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 // An interface so that pages can define refresh method to refresh their view models. 6 namespace Microsoft.PowerToys.Settings.UI.Helpers 7 { 8 public interface IRefreshablePage 9 { 10 void RefreshEnabledState(); 11 } 12 }