mirror of
https://github.com/bitwarden/mobile
synced 2025-12-24 12:13:18 +00:00
8 lines
147 B
C#
8 lines
147 B
C#
namespace Bit.Core.Abstractions
|
|
{
|
|
public interface IMessagingService
|
|
{
|
|
void Send(string subscriber, object arg = null);
|
|
}
|
|
}
|