mirror of
https://github.com/theitaliandeveloper/Perfect11.git
synced 2025-12-06 09:02:03 +00:00
21 lines
489 B
C#
21 lines
489 B
C#
using Perfect11.TweaksInterface;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Perfect11.Inbox.Spotlight
|
|
{
|
|
public class Tweak : IPlugin
|
|
{
|
|
public string Name => "Enable/Disable Windows Spotlight";
|
|
public string Description => "Enable or Disable Windows Spotlight feature";
|
|
public string Category => "Annoyances";
|
|
public string Execute()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|