Files
HC_APTBS/Infrastructure/Kwp/Packets/NakPacket.cs
2026-04-11 12:45:18 +02:00

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");
}
}
}