PowerToys/Plugins/Wox.Plugin.Program/Program.cs
2016-04-24 13:35:21 +01:00

19 lines
505 B
C#

using System;
using System.Text.RegularExpressions;
using System.Threading;
using Wox.Infrastructure;
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 IProgramSource Source { get; set; }
}
}