mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 15:44:25 +08:00
9 lines
190 B
C#
9 lines
190 B
C#
namespace LanMountainDesktop.PluginSdk;
|
|
|
|
public interface IPluginMessageBus
|
|
{
|
|
IDisposable Subscribe<TMessage>(Action<TMessage> handler);
|
|
|
|
void Publish<TMessage>(TMessage message);
|
|
}
|