1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-13 14:03:23 +00:00
Files
mobile/src/Core/Abstractions/IMessagingService.cs
2022-04-26 17:21:17 +02:00

8 lines
147 B
C#

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