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