Files
LanMountainDesktop/LanMountainDesktop.PluginSdk/IComponentEditorHostContext.cs
2026-03-14 22:45:09 +08:00

11 lines
191 B
C#

namespace LanMountainDesktop.PluginSdk;
public interface IComponentEditorHostContext
{
void RequestRefresh();
void CloseEditor();
void RequestRestart(string? reason = null);
}