using System; using System.Collections.Generic; namespace HC_APTBS.Infrastructure.Kwp.Packets { class NakPacket : Packet { public NakPacket(List bytes) : base(bytes) { Dump(); } private void Dump() { System.Diagnostics.Debug.WriteLine("Received NAK packet"); } } }