using System; using System.Collections.Generic; using System.Text; namespace NavNet { public class RawPacketReceivedEventArgs : EventArgs { #region Declarations public RawPacket Packet { get; internal set; } #endregion #region Constructors / Teardown public RawPacketReceivedEventArgs(RawPacket packet) { Packet = packet; } #endregion } }