Files
LanMountainDesktop/airapp/LanMountainDesktop.AirAppSdk/IAirAppPublicIpcBuilder.cs
2026-08-11 23:03:55 +08:00

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);
}