Files
LanMountainDesktop/airapp/LanMountainDesktop.PluginSdk/IComponentEditorHostContext.cs
2026-08-11 19:41:54 +08:00

11 lines
191 B
C#

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