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