/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/launcher/Plugins/Microsoft.Plugin.Program/Programs/IPackageManager.cs
13 строк
379 B
Clint Rutkas
[stylecop] program plugin/unit test first pass (#5908)
12 авг 2020, 21:46
Не верифицирован
12 авг 2020, 21:46
95e82ca
Код
Авторство
О чём код?
// 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.Collections.Generic; namespace Microsoft.Plugin.Program.Programs { public interface IPackageManager { IEnumerable<IPackage> FindPackagesForCurrentUser(); } }