PowerToys/WinAlfred.Plugin.System/CMD.cs

21 lines
382 B
C#
Raw Normal View History

2014-01-03 18:16:05 +08:00
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();
}
}
}