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

22 lines
379 B
C#
Raw Normal View History

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; }
}
}