Files

16 lines
430 B
C#
Raw Permalink Normal View History

2026-08-11 23:03:55 +08:00
namespace LanMountainDesktop.AirAppSdk;
2026-08-11 23:03:55 +08:00
public interface IAirAppPublicIpcBuilder
{
2026-08-11 23:03:55 +08:00
IAirAppPublicIpcBuilder AddService<TContract>(
string? objectId = null,
IEnumerable<string>? notifyIds = null)
where TContract : class;
2026-08-11 23:03:55 +08:00
IAirAppPublicIpcBuilder AddService(
Type contractType,
object implementation,
string? objectId = null,
IEnumerable<string>? notifyIds = null);
}