17 lines
190 B
C++
17 lines
190 B
C++
#ifndef API_H_
|
|
#define API_H_
|
|
|
|
#include<string>
|
|
|
|
namespace Models
|
|
{
|
|
struct API
|
|
{
|
|
std::string url;
|
|
std::string endpoint;
|
|
std::string version;
|
|
};
|
|
}
|
|
|
|
#endif
|