Files
LanMountainDesktop/LanMountainDesktop.PluginSdk/IPluginRuntimeContext.cs
lincube 33baaa579d 0.7.1
2026-03-20 22:37:37 +08:00

21 lines
425 B
C#

namespace LanMountainDesktop.PluginSdk;
public interface IPluginRuntimeContext
{
PluginManifest Manifest { get; }
string PluginDirectory { get; }
string DataDirectory { get; }
IServiceProvider Services { get; }
IReadOnlyDictionary<string, object?> Properties { get; }
IPluginAppearanceContext Appearance { get; }
T? GetService<T>();
bool TryGetProperty<T>(string key, out T? value);
}