mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
bed65745cc
As proposed in #569
19 lines
505 B
C#
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; }
|
|
}
|
|
} |