2014-12-15 22:58:49 +08:00
|
|
|
using System;
|
2016-01-06 21:34:42 +00:00
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
using System.Threading;
|
2014-08-10 22:22:54 +08:00
|
|
|
using Wox.Infrastructure;
|
2016-07-21 19:51:47 +01:00
|
|
|
using Wox.Plugin.Program.ProgramSources;
|
2014-08-10 22:22:54 +08:00
|
|
|
|
2015-01-03 15:20:34 +08:00
|
|
|
namespace Wox.Plugin.Program
|
2014-08-10 22:22:54 +08:00
|
|
|
{
|
2014-12-15 22:58:49 +08:00
|
|
|
[Serializable]
|
2014-08-10 22:22:54 +08:00
|
|
|
public class Program
|
|
|
|
|
{
|
2016-04-24 00:37:25 +01:00
|
|
|
public string Title { get; set; }
|
2014-08-10 22:22:54 +08:00
|
|
|
public string IcoPath { get; set; }
|
2016-04-24 13:35:21 +01:00
|
|
|
public string Path { get; set; }
|
|
|
|
|
public string Directory { get; set; }
|
|
|
|
|
public string ExecutableName { get; set; }
|
2014-08-10 22:22:54 +08:00
|
|
|
public int Score { get; set; }
|
2016-07-21 19:51:47 +01:00
|
|
|
public ProgramSource Source { get; set; }
|
2014-08-10 22:22:54 +08:00
|
|
|
}
|
|
|
|
|
}
|