1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-25 04:33:36 +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);
}
}