mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-24 00:48:00 +08:00
12 lines
228 B
C#
12 lines
228 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Microsoft.Plugin.Program.Programs
|
|||
|
{
|
|||
|
public interface IPackageManager
|
|||
|
{
|
|||
|
IEnumerable<IPackage> FindPackagesForCurrentUser();
|
|||
|
}
|
|||
|
}
|