mirror of
https://github.com/ZmnSCPxj/clboss.git
synced 2026-08-15 12:50:42 +02:00
19 lines
323 B
C++
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) */
|