Files
LanMountainDesktop/LanMountainDesktop.PluginSdk/ISettingsPageHostContext.cs

13 lines
247 B
C#
Raw Normal View History

2026-03-13 22:20:12 +08:00
using Avalonia.Controls;
namespace LanMountainDesktop.PluginSdk;
public interface ISettingsPageHostContext
{
void OpenDrawer(Control content, string? title = null);
void CloseDrawer();
void RequestRestart(string? reason = null);
}