mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 01:54:00 +00:00
fix location.h
This commit is contained in:
16
pipeline/includes/data_model/location.h
Normal file
16
pipeline/includes/data_model/location.h
Normal 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_
|
||||
Reference in New Issue
Block a user