mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
15 lines
366 B
C#
15 lines
366 B
C#
using System;
|
|
|
|
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; }
|
|
}
|
|
} |