#ifndef API_H_ #define API_H_ #include namespace Models { class API { public: std::string url; std::string endpoint; std::string version; }; } #endif