2014-12-15 22:58:49 +08:00
|
|
|
using System;
|
2016-01-07 05:34:42 +08:00
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
using System.Threading;
|
2014-08-10 22:22:54 +08:00
|
|
|
using Wox.Infrastructure;
|
2016-07-22 02:51:47 +08: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 07:37:25 +08:00
|
|
|
public string Title { get; set; }
|
2014-08-10 22:22:54 +08:00
|
|
|
public string IcoPath { get; set; }
|
2016-04-24 20:35:21 +08: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-22 02:51:47 +08:00
|
|
|
public ProgramSource Source { get; set; }
|
2014-08-10 22:22:54 +08:00
|
|
|
}
|
|
|
|
}
|