mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
13 lines
247 B
C#
13 lines
247 B
C#
|
|
using Avalonia.Controls;
|
||
|
|
|
||
|
|
namespace LanMountainDesktop.PluginSdk;
|
||
|
|
|
||
|
|
public interface ISettingsPageHostContext
|
||
|
|
{
|
||
|
|
void OpenDrawer(Control content, string? title = null);
|
||
|
|
|
||
|
|
void CloseDrawer();
|
||
|
|
|
||
|
|
void RequestRestart(string? reason = null);
|
||
|
|
}
|