mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
9 lines
263 B
C#
9 lines
263 B
C#
|
|
namespace LanMountainDesktop.Shared.IPC.DependencyInjection;
|
||
|
|
|
||
|
|
public sealed record PublicIpcServiceRegistration(
|
||
|
|
Type ContractType,
|
||
|
|
Func<IServiceProvider, object> ImplementationFactory,
|
||
|
|
string? ObjectId,
|
||
|
|
string? PluginId,
|
||
|
|
string[] NotifyIds);
|