mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
9 lines
198 B
C#
9 lines
198 B
C#
|
|
namespace LanMountainDesktop.PluginSdk;
|
||
|
|
|
||
|
|
public sealed record InstalledPluginInfo(
|
||
|
|
PluginManifest Manifest,
|
||
|
|
bool IsEnabled,
|
||
|
|
bool IsLoaded,
|
||
|
|
bool IsPackage,
|
||
|
|
string? ErrorMessage);
|