#pragma once #include namespace Incart::DevicesInfo { struct ComplexCommandInfo { std::string name; std::string description; std::string handlerName; ComplexCommandInfo(const std::string& name_, const std::string& description_, const std::string& handlerName_) : name(name_), description(description_), handlerName(handlerName_) { } }; } // namespace Incart::DevicesInfo