1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-22 19:23:58 +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

@@ -0,0 +1,8 @@
namespace Bit.Core.Models.Domain
{
public class Message
{
public string Command { get; set; }
public object Data { get; set; }
}
}