1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-06 10:34:07 +00:00

re-worked message sending

This commit is contained in:
Kyle Spearrin
2019-04-19 12:29:37 -04:00
parent 4b7366e9b3
commit 7c1549bb95
8 changed files with 79 additions and 21 deletions

View File

@@ -2,6 +2,6 @@
{
public interface IMessagingService
{
void Send<T>(string subscriber, T arg = default(T));
void Send(string subscriber, object arg = null);
}
}