summaryrefslogtreecommitdiff
path: root/bot/src/schemas
diff options
context:
space:
mode:
Diffstat (limited to 'bot/src/schemas')
-rw-r--r--bot/src/schemas/event.hpp13
1 files changed, 13 insertions, 0 deletions
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 <string>
+#include <vector>
+
+namespace bot::schemas {
+ struct Event {
+ int id, alias_id;
+ std::string message, channel_alias_name;
+ bool is_massping;
+ std::vector<std::string> subs;
+ };
+} \ No newline at end of file