mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-10 21:41:51 +02:00
init
This commit is contained in:
22
WinAlfred.Plugin/Query.cs
Normal file
22
WinAlfred.Plugin/Query.cs
Normal 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()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user