summaryrefslogtreecommitdiff
path: root/bot/src/api/twitch/schemas/user.hpp
blob: 288ec727101c18dd1273461b620a39ce18dfedf3 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

#include <string>

namespace bot::api::twitch::schemas {
  struct User {
      int id;
      std::string login;
  };
}