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;
|
|
|
|
|
|
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-01-06 21:34:42 +00:00
|
|
|
private static readonly Regex AbbrRegexp = new Regex("[^A-Z0-9]", RegexOptions.Compiled);
|
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; }
|
|
|
|
|
public string ExecutePath { get; set; }
|
|
|
|
|
public string ExecuteName { get; set; }
|
|
|
|
|
public int Score { get; set; }
|
|
|
|
|
public IProgramSource Source { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|