Files
squeezelite-esp32/components/spotify/cspot/include/Packet.h
2022-01-09 19:40:18 -08:00

17 lines
231 B
C++

#ifndef PACKET_H
#define PACKET_H
#include <vector>
#include <cstdint>
class Packet
{
private:
public:
Packet(uint8_t command, const std::vector<uint8_t> &data);
uint8_t command;
std::vector<uint8_t> data;
};
#endif