#pragma once #include #include #include "SimpleCommandData.h" namespace Incart::DevicesInfo { struct SimpleCommandInfo { std::string name; std::string description; uint8_t code; SimpleCommandData data; SimpleCommandInfo(const std::string& name_, const std::string& description_, uint8_t code_, const SimpleCommandData& data_) : name(name_), description(description_), code(code_), data(data_) { } }; } // namespace Incart::DevicesInfo