mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
13 lines
336 B
C#
13 lines
336 B
C#
|
|
namespace LanMountainDesktop.PluginSdk;
|
||
|
|
|
||
|
|
public sealed record HostApplicationLifecycleRequest(
|
||
|
|
string? Source = null,
|
||
|
|
string? Reason = null);
|
||
|
|
|
||
|
|
public interface IHostApplicationLifecycle
|
||
|
|
{
|
||
|
|
bool TryExit(HostApplicationLifecycleRequest? request = null);
|
||
|
|
|
||
|
|
bool TryRestart(HostApplicationLifecycleRequest? request = null);
|
||
|
|
}
|