mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 01:54:00 +00:00
23 lines
484 B
C++
23 lines
484 B
C++
#ifndef BIERGARTEN_PIPELINE_INCLUDES_DATA_MODEL_USER_RESULT_H_
|
|
#define BIERGARTEN_PIPELINE_INCLUDES_DATA_MODEL_USER_RESULT_H_
|
|
|
|
/**
|
|
* @file data_model/user_result.h
|
|
* @brief Generated user profile payload.
|
|
*/
|
|
|
|
#include <string>
|
|
|
|
/**
|
|
* @brief Generated user profile payload.
|
|
*/
|
|
struct UserResult {
|
|
/// @brief Username handle.
|
|
std::string username{};
|
|
|
|
/// @brief Short user biography.
|
|
std::string bio{};
|
|
};
|
|
|
|
#endif // BIERGARTEN_PIPELINE_INCLUDES_DATA_MODEL_USER_RESULT_H_
|