PowerToys/Plugins/Wox.Plugin.Program/Program.cs

20 lines
545 B
C#
Raw Normal View History

using System;
2016-01-07 05:34:42 +08:00
using System.Text.RegularExpressions;
using System.Threading;
using Wox.Infrastructure;
using Wox.Plugin.Program.ProgramSources;
namespace Wox.Plugin.Program
{
[Serializable]
public class Program
{
public string Title { get; set; }
public string IcoPath { get; set; }
public string Path { get; set; }
public string Directory { get; set; }
public string ExecutableName { get; set; }
public int Score { get; set; }
public ProgramSource Source { get; set; }
}
}