Files
MQTT/include/Message.h
T
2020-06-12 11:31:09 +02:00

18 lines
179 B
C++

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