mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
16 lines
430 B
C#
16 lines
430 B
C#
|
|
namespace LanMountainDesktop.PluginSdk;
|
||
|
|
|
||
|
|
public interface IPluginPublicIpcBuilder
|
||
|
|
{
|
||
|
|
IPluginPublicIpcBuilder AddService<TContract>(
|
||
|
|
string? objectId = null,
|
||
|
|
IEnumerable<string>? notifyIds = null)
|
||
|
|
where TContract : class;
|
||
|
|
|
||
|
|
IPluginPublicIpcBuilder AddService(
|
||
|
|
Type contractType,
|
||
|
|
object implementation,
|
||
|
|
string? objectId = null,
|
||
|
|
IEnumerable<string>? notifyIds = null);
|
||
|
|
}
|