mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 10:04:00 +00:00
17 lines
355 B
C++
17 lines
355 B
C++
#ifndef BIERGARTEN_PIPELINE_MODELS_LOCATION_H_
|
|
#define BIERGARTEN_PIPELINE_MODELS_LOCATION_H_
|
|
|
|
#include <string>
|
|
|
|
struct Location {
|
|
std::string city;
|
|
std::string state_province;
|
|
std::string iso3166_2;
|
|
std::string country;
|
|
std::string iso3166_1;
|
|
double latitude;
|
|
double longitude;
|
|
};
|
|
|
|
#endif // BIERGARTEN_PIPELINE_MODELS_LOCATION_H_
|