1
0
mirror of https://github.com/bitwarden/mobile synced 2026-02-19 19:03:33 +00:00
Files
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);
}
}