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

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