Flow.Launcher/Wox.Plugin/Features/IExclusiveQuery.cs

8 lines
130 B
C#
Raw Normal View History

2015-10-30 23:17:34 +00:00
namespace Wox.Plugin.Features
2015-02-05 10:43:05 +00:00
{
2015-02-05 14:20:42 +00:00
public interface IExclusiveQuery
2015-02-05 10:43:05 +00:00
{
2015-02-05 14:20:42 +00:00
bool IsExclusiveQuery(Query query);
2015-02-05 10:43:05 +00:00
}
}