19 lines
351 B
C#
19 lines
351 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace HC_APTBS.Infrastructure.Kwp.Packets
|
|
{
|
|
public class AckPacket : Packet
|
|
{
|
|
public AckPacket(List<byte> bytes) : base(bytes)
|
|
{
|
|
Dump();
|
|
}
|
|
|
|
private void Dump()
|
|
{
|
|
//Logger.WriteLine("Received ACK packet");
|
|
}
|
|
}
|
|
}
|