mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-15 11:17:53 +01: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()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|