Files
NSspi/TestProtocol/Message.cs
2014-06-25 21:49:35 +00:00

22 lines
448 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TestProtocol
{
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; }
}
}