19 lines
360 B
C#
19 lines
360 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace HC_APTBS.Infrastructure.Kwp.Packets
|
|
{
|
|
class NakPacket : Packet
|
|
{
|
|
public NakPacket(List<byte> bytes) : base(bytes)
|
|
{
|
|
Dump();
|
|
}
|
|
|
|
private void Dump()
|
|
{
|
|
System.Diagnostics.Debug.WriteLine("Received NAK packet");
|
|
}
|
|
}
|
|
}
|