mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
10 lines
281 B
C#
10 lines
281 B
C#
using System;
|
|
|
|
namespace Wox.Plugin.Features
|
|
{
|
|
[Obsolete("Delete Wox.Plugin.Features using directive, " +
|
|
"and use Wox.Plugin.Feature.IInstantQuery instead, " +
|
|
"this method will be removed in v1.3.0")]
|
|
public interface IExclusiveQuery { }
|
|
}
|