Program plugin: remove complicated inheritance

This commit is contained in:
bao-qian
2016-07-21 19:51:47 +01:00
parent 0c9015bb77
commit 1de68051e3
13 changed files with 93 additions and 187 deletions

View File

@@ -2,6 +2,7 @@ using System;
using System.Text.RegularExpressions;
using System.Threading;
using Wox.Infrastructure;
using Wox.Plugin.Program.ProgramSources;
namespace Wox.Plugin.Program
{
@@ -14,6 +15,6 @@ namespace Wox.Plugin.Program
public string Directory { get; set; }
public string ExecutableName { get; set; }
public int Score { get; set; }
public IProgramSource Source { get; set; }
public ProgramSource Source { get; set; }
}
}