11 lines
183 B
C#
11 lines
183 B
C#
using System;
|
|
|
|
namespace Inspectron.HawkEye
|
|
{
|
|
public class Packet
|
|
{
|
|
public EPacketType PacketType { get; set; }
|
|
public byte[] Payload { get; set; }
|
|
}
|
|
}
|