mirror of
https://github.com/microsoft/PowerToys
synced 2024-11-22 08:11:25 +00:00
23 lines
457 B
C#
23 lines
457 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|