mirror of
https://github.com/bitwarden/mobile
synced 2025-12-16 00:03:22 +00:00
14 lines
325 B
C#
14 lines
325 B
C#
using System;
|
|
using Bit.Core.Models.Domain;
|
|
|
|
namespace Bit.Core.Abstractions
|
|
{
|
|
public interface IBroadcasterService
|
|
{
|
|
void Send(Message message);
|
|
void Send(Message message, string id);
|
|
void Subscribe(string id, Action<Message> messageCallback);
|
|
void Unsubscribe(string id);
|
|
}
|
|
}
|