/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/settings-ui/Settings.UI.Library/Interfaces/ISettingsRepository`1.cs
17 строк
436 B
Shawn Yuan
Settings Flyout improvement (#43840)
07 янв 2026, 11:38
Не верифицирован
07 янв 2026, 11:38
9086995
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; namespace Microsoft.PowerToys.Settings.UI.Library.Interfaces { public interface ISettingsRepository<T> { T SettingsConfig { get; set; } bool ReloadSettings(); event Action<T> SettingsChanged; } }