summaryrefslogtreecommitdiff
path: root/bot/src/schemas/event.hpp
blob: a91aef362058c8698cb73a39a2a9ef6b21103bdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;
  };
}