Implemented fetchUserTitlesAsync func and embedded it in the code of the front in the trial mode. It needs to be restructured
10 lines
141 B
C++
10 lines
141 B
C++
#pragma once
|
|
|
|
namespace BotStructs {
|
|
struct Title {
|
|
int64_t id;
|
|
std::string name;
|
|
std::string description;
|
|
int64_t num;
|
|
};
|
|
}
|