namespace LanMountainDesktop.PluginSdk; public interface IPluginPublicIpcBuilder { IPluginPublicIpcBuilder AddService( string? objectId = null, IEnumerable? notifyIds = null) where TContract : class; IPluginPublicIpcBuilder AddService( Type contractType, object implementation, string? objectId = null, IEnumerable? notifyIds = null); }