bitwarden-mobile/src/Core/Abstractions/IMessagingService.cs

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
}
2022-04-26 17:21:17 +02:00
}