Files
PowerToys/WinAlfred.Plugin/Result.cs
qianlifeng fd1ee23adc init
2013-12-19 23:51:20 +08:00

11 lines
208 B
C#

using System;
namespace WinAlfred.Plugin
{
public class Result
{
public string Title { get; set; }
public Action Action { get; set; }
public int Score { get; set; }
}
}