Files
LanMountainDesktop/airapp/LanMountainDesktop.AirAppSdk/IComponentEditorHostContext.cs
2026-08-11 23:03:55 +08:00

11 lines
191 B
C#

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