mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
11 lines
285 B
C#
11 lines
285 B
C#
|
|
namespace LanMountainDesktop.Shared.IPC;
|
||
|
|
|
||
|
|
public sealed record PublicIpcServiceDescriptor(
|
||
|
|
string ContractTypeName,
|
||
|
|
string ContractAssemblyName,
|
||
|
|
string? ContractAssemblyQualifiedName,
|
||
|
|
string? ObjectId,
|
||
|
|
string? PluginId,
|
||
|
|
bool IsBuiltIn,
|
||
|
|
string[] NotifyIds);
|