Flow.Launcher/Plugins/Flow.Launcher.Plugin.ProcessKiller/Settings.cs

10 lines
221 B
C#
Raw Permalink Normal View History

2025-03-26 07:33:49 +00:00
namespace Flow.Launcher.Plugin.ProcessKiller
{
public class Settings
{
public bool ShowWindowTitle { get; set; } = true;
2025-03-26 07:33:49 +00:00
public bool PutVisibleWindowProcessesTop { get; set; } = false;
}
}