Files
PowerToys/WinAlfred.Plugin.System/CMD.cs
2014-01-03 18:16:05 +08:00

21 lines
382 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WinAlfred.Plugin.System
{
public class CMD:IPlugin
{
public List<Result> Query(Query query)
{
throw new NotImplementedException();
}
public void Init()
{
throw new NotImplementedException();
}
}
}