Working on a rough demo client/server app.

This commit is contained in:
antiduh
2014-06-25 21:28:03 +00:00
parent 6dfaa54b63
commit 2e6b847434
37 changed files with 2186 additions and 3 deletions

21
TestProtocol/Message.cs Normal file
View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TestClient
{
public class Message
{
public Message(ProtocolOp op, byte[] data)
{
this.Operation = op;
this.Data = data;
}
public ProtocolOp Operation { get; private set; }
public byte[] Data { get; private set; }
}
}