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

22
WinAlfred.Plugin/Query.cs Normal file
View File

@@ -0,0 +1,22 @@
using System.Collections.Generic;
namespace WinAlfred.Plugin
{
public class Query
{
public string RawQuery { get; set; }
public string ActionName { get; private set; }
public List<string> ActionParameters { get; private set; }
public Query(string rawQuery)
{
RawQuery = rawQuery;
ParseQuery();
}
private void ParseQuery()
{
}
}
}