mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-15 11:17:53 +01:00
17 lines
265 B
C#
17 lines
265 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using WinAlfred.Plugin;
|
|||
|
|
|
|||
|
|
namespace WinAlfred.Commands
|
|||
|
|
{
|
|||
|
|
public class SystemCommand
|
|||
|
|
{
|
|||
|
|
public void Dispatch(Query query)
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|