merge Develop into master #9

Merged
SemvdH merged 66 commits from develop into master 2020-09-25 14:51:29 +00:00
Showing only changes of commit 603703b3f6 - Show all commits

View File

@@ -1,34 +0,0 @@
using Newtonsoft.Json;
using System;
namespace Message
{
public class Message
{
public string Identifier
{
get;set;
}
public string Payload
{
get;set;
}
public Message(string identifier, string payload)
{
this.Identifier = identifier;
this.Payload = payload;
}
public string Serialize()
{
return JsonConvert.SerializeObject(this);
}
public static Message Deserialize(string json)
{
return (Message)JsonConvert.DeserializeObject(json);
}
}
}