Bitwarden-app-android-iphon.../src/Core/Abstractions/IMessagingService.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
147 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
}
}