1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-25 10:26:02 +02:00
bitwarden-mobile/src/Core/Abstractions/IMessagingService.cs
2019-04-19 12:29:37 -04:00

7 lines
146 B
C#

namespace Bit.Core.Abstractions
{
public interface IMessagingService
{
void Send(string subscriber, object arg = null);
}
}