Files
PowerToys/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 18:43:05 +08:00
{
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
}
}