mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-08-18 15:33:33 +08:00
8 lines
242 B
C#
8 lines
242 B
C#
namespace LanMountainDesktop.Shared.IPC;
|
|
|
|
public interface IExternalIpcNotificationPublisher
|
|
{
|
|
Task NotifyAsync<TPayload>(string notifyId, TPayload payload, CancellationToken cancellationToken = default)
|
|
where TPayload : class;
|
|
}
|