Files
MQTT/include/MQTTMessage.h
2020-06-12 11:52:57 +02:00

18 lines
195 B
C++

#ifndef MQTTMESSAGE_H
#define MQTTMESSAGE_H
#include <string>
namespace MQTT {
struct MQTTMessage
{
std::string topic;
std::string payload;
};
} // namespace MQTT
#endif // MQTTMESSAGE_H