diff options
Diffstat (limited to 'src/api/twitch/schemas/stream.hpp')
| -rw-r--r-- | src/api/twitch/schemas/stream.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/api/twitch/schemas/stream.hpp b/src/api/twitch/schemas/stream.hpp new file mode 100644 index 0000000..ea380db --- /dev/null +++ b/src/api/twitch/schemas/stream.hpp @@ -0,0 +1,9 @@ +#pragma once + +#include <string> +namespace bot::api::twitch::schemas { + struct Stream { + int user_id; + std::string user_login, game_name, title, started_at; + }; +} |
