Files
PowerToys/src/modules/launcher/PowerLauncher/ViewModel/IMainViewModel.cs
Henrik Lau Eriksson 460f242967 [PTRun] Fix always show after executing context menu result (#21291)
* fix always show

* add tests

* remove workaround
2022-10-25 22:27:18 +01:00

12 lines
294 B
C#

// Copyright (c) Microsoft Corporation
// The Microsoft Corporation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
namespace PowerLauncher.ViewModel
{
public interface IMainViewModel
{
void Hide();
}
}