Files
LanMountainDesktop/LanMountainDesktop.PluginSdk/IComponentEditorHostContext.cs

11 lines
191 B
C#
Raw Permalink Normal View History

2026-03-14 22:45:09 +08:00
namespace LanMountainDesktop.PluginSdk;
public interface IComponentEditorHostContext
{
void RequestRefresh();
void CloseEditor();
void RequestRestart(string? reason = null);
}