Files
icarus_dm/include/Models/API.h
T

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