Files
LanMountainDesktop/core/LanMountainDesktop.Core/DependencyInjection/PublicIpcServiceRegistration.cs
2026-08-11 19:41:54 +08:00

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);