mirror of
https://github.com/bitwarden/mobile
synced 2025-12-21 18:53:29 +00:00
13 lines
296 B
C#
13 lines
296 B
C#
using System;
|
|
using Bit.Core.Models.Domain;
|
|
|
|
namespace Bit.Core.Abstractions
|
|
{
|
|
public interface IBroadcasterService
|
|
{
|
|
void Send(Message message, string id = null);
|
|
void Subscribe(string id, Action<Message> messageCallback);
|
|
void Unsubscribe(string id);
|
|
}
|
|
}
|