11 lines
167 B
C++
11 lines
167 B
C++
#pragma once
|
|
|
|
namespace BotStructs {
|
|
struct Title {
|
|
int64_t id;
|
|
std::string name;
|
|
std::string description;
|
|
int64_t num;
|
|
std::string imageUrl;
|
|
};
|
|
}
|