mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-08-18 15:33:33 +08:00
9 lines
193 B
C#
9 lines
193 B
C#
namespace LanMountainDesktop.Shared.IPC;
|
|
|
|
public sealed record PublicPluginDescriptor(
|
|
string PluginId,
|
|
string DisplayName,
|
|
string? Version,
|
|
bool IsLoaded,
|
|
bool IsEnabled);
|