From 8b86e9a8f071a1af5ce1531a9ebd2b2140e73ff7 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Mon, 21 Jul 2025 16:34:23 +0500 Subject: feat: a function for getting events --- bot/src/schemas/event.hpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 bot/src/schemas/event.hpp (limited to 'bot/src/schemas/event.hpp') diff --git a/bot/src/schemas/event.hpp b/bot/src/schemas/event.hpp new file mode 100644 index 0000000..a91aef3 --- /dev/null +++ b/bot/src/schemas/event.hpp @@ -0,0 +1,13 @@ +#pragma once + +#include +#include + +namespace bot::schemas { + struct Event { + int id, alias_id; + std::string message, channel_alias_name; + bool is_massping; + std::vector subs; + }; +} \ No newline at end of file -- cgit v1.2.3