fix location.h

This commit is contained in:
Aaron Po
2026-04-08 21:07:28 -04:00
parent 3c7e74e3c1
commit a7cbf7507f
2 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
#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_