PowerToys/src/modules/launcher/Plugins/Microsoft.Plugin.Program/Programs/IPackageManager.cs

12 lines
228 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace Microsoft.Plugin.Program.Programs
{
public interface IPackageManager
{
IEnumerable<IPackage> FindPackagesForCurrentUser();
}
}