mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-23 00:17:58 +08:00
653ae777d5
* Added wrapper for PackageManager and Package class * Added tests for package in development and framework mode * Renamed UWP test file * Improved readability of UWP tests
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; }
|
|
}
|
|
}
|