Files
LanMountainDesktop/LanMountainDesktop.PluginSdk/IPluginRuntimeContext.cs

19 lines
375 B
C#
Raw Normal View History

2026-03-12 09:22:03 +08:00
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);
}