Files
LanMountainDesktop/LanMountainDesktop.PluginSdk/IPluginRuntimeContext.cs
lincube d3356f3319 0.5.19
插件系统V2
2026-03-12 09:22:03 +08:00

19 lines
375 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; }
T? GetService<T>();
bool TryGetProperty<T>(string key, out T? value);
}