summaryrefslogtreecommitdiff
path: root/src/api/twitch/schemas/stream.hpp
blob: ea380db8f17b2c8cd6bdecedf2637542eb77ef81 (plain)
1
2
3
4
5
6
7
8
9
#pragma once

#include <string>
namespace bot::api::twitch::schemas {
  struct Stream {
      int user_id;
      std::string user_login, game_name, title, started_at;
  };
}