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