Files
PowerToys/WinAlfred.Plugin/Result.cs

11 lines
208 B
C#
Raw Normal View History

2013-12-19 23:51:20 +08:00
using System;
namespace WinAlfred.Plugin
{
public class Result
{
public string Title { get; set; }
public Action Action { get; set; }
public int Score { get; set; }
}
}