mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 10:04:00 +00:00
23 lines
522 B
C++
23 lines
522 B
C++
#ifndef BIERGARTEN_PIPELINE_INCLUDES_DATA_MODEL_BREWERY_LOCATION_H_
|
|
#define BIERGARTEN_PIPELINE_INCLUDES_DATA_MODEL_BREWERY_LOCATION_H_
|
|
|
|
/**
|
|
* @file data_model/brewery_location.h
|
|
* @brief Non-owning brewery location input.
|
|
*/
|
|
|
|
#include <string_view>
|
|
|
|
/**
|
|
* @brief Non-owning brewery location input.
|
|
*/
|
|
struct BreweryLocation {
|
|
/// @brief City name.
|
|
std::string_view city_name;
|
|
|
|
/// @brief Country name.
|
|
std::string_view country_name;
|
|
};
|
|
|
|
#endif // BIERGARTEN_PIPELINE_INCLUDES_DATA_MODEL_BREWERY_LOCATION_H_
|