using System; using System.Collections.Generic; namespace HC_APTBS.Infrastructure.Kwp.Packets { public class AckPacket : Packet { public AckPacket(List bytes) : base(bytes) { Dump(); } private void Dump() { //Logger.WriteLine("Received ACK packet"); } } }