mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-23 00:17:58 +08:00
22 lines
379 B
C#
22 lines
379 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Microsoft.Plugin.Program.Programs
|
|||
|
{
|
|||
|
public interface IPackage
|
|||
|
{
|
|||
|
string Name { get; }
|
|||
|
|
|||
|
string FullName { get; }
|
|||
|
|
|||
|
string FamilyName { get; }
|
|||
|
|
|||
|
bool IsFramework { get; }
|
|||
|
|
|||
|
bool IsDevelopmentMode { get; }
|
|||
|
|
|||
|
string InstalledLocation { get; }
|
|||
|
}
|
|||
|
}
|