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

13 lines
217 B
C#
Raw Normal View History

2015-02-05 10:43:05 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Wox.Plugin.Features
{
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
}
}