mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
10 lines
183 B
C#
10 lines
183 B
C#
|
|
namespace LanMountainDesktop.Shared.Contracts.Launcher;
|
||
|
|
|
||
|
|
public enum MultiInstanceLaunchBehavior
|
||
|
|
{
|
||
|
|
RestartApp,
|
||
|
|
OpenDesktopSilently,
|
||
|
|
PromptOnly,
|
||
|
|
NotifyAndOpenDesktop
|
||
|
|
}
|