/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/launcher/Plugins/Microsoft.Plugin.Program/Programs/IPackageCatalog.cs
18 строк
632 B
Clint Rutkas
whitespace forced changes (#6002)
17 авг 2020, 20:00
Не верифицирован
17 авг 2020, 20:00
d055ba1
Код
Авторство
О чём код?
// 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 Windows.ApplicationModel; using Windows.Foundation; namespace Microsoft.Plugin.Program.Programs { internal interface IPackageCatalog { event TypedEventHandler<PackageCatalog, PackageInstallingEventArgs> PackageInstalling; event TypedEventHandler<PackageCatalog, PackageUninstallingEventArgs> PackageUninstalling; event TypedEventHandler<PackageCatalog, PackageUpdatingEventArgs> PackageUpdating; } }