Files
BloomPatched/src/DebugToolDrivers/WCH/Protocols/WchLink/Responses/Response.hpp

17 lines
300 B
C++
Raw Normal View History

#pragma once
#include <vector>
namespace DebugToolDrivers::Wch::Protocols::WchLink::Responses
{
class Response
{
public:
std::vector<unsigned char> payload;
explicit Response(const std::vector<unsigned char>& payload)
: payload(payload)
{}
};
}