This commit is contained in:
qianlifeng
2013-12-19 23:51:20 +08:00
parent a540165280
commit fd1ee23adc
26 changed files with 1128 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using System;
namespace WinAlfred.Plugin
{
public class Result
{
public string Title { get; set; }
public Action Action { get; set; }
public int Score { get; set; }
}
}