1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-28 03:57:43 +02:00
bitwarden-mobile/src/Core/Abstractions/IMessagingService.cs

7 lines
146 B
C#
Raw Normal View History

2019-04-11 21:50:51 +02:00
namespace Bit.Core.Abstractions
{
public interface IMessagingService
{
2019-04-19 18:29:37 +02:00
void Send(string subscriber, object arg = null);
2019-04-11 21:50:51 +02:00
}
}