clboss/Boss/Msg/PayInvoice.hpp
2020-09-28 11:28:07 +08:00

19 lines
323 B
C++

#ifndef BOSS_MSG_PAYINVOICE_HPP
#define BOSS_MSG_PAYINVOICE_HPP
#include<string>
namespace Boss { namespace Msg {
/** struct Boss::Msg::PayInvoice
*
* @brief Emitted when we want to pay an
* invoice for some reason.
*/
struct PayInvoice {
std::string invoice;
};
}}
#endif /* !defined(BOSS_MSG_PAYINVOICE_HPP) */