PowerToys/Wox.Plugin/Features/IExclusiveQuery.cs

13 lines
217 B
C#
Raw Normal View History

2015-02-05 18:43:05 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Wox.Plugin.Features
{
2015-02-05 22:20:42 +08:00
public interface IExclusiveQuery
2015-02-05 18:43:05 +08:00
{
2015-02-05 22:20:42 +08:00
bool IsExclusiveQuery(Query query);
2015-02-05 18:43:05 +08:00
}
}