generated from Sithas/conan_template
23 lines
369 B
C++
23 lines
369 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <cstdint>
|
|
|
|
namespace uad
|
|
{
|
|
struct diary_dto
|
|
{
|
|
std::string uuid;
|
|
int64_t time_ms;
|
|
int64_t mania_level;
|
|
int64_t depression_level;
|
|
int64_t mood_level;
|
|
int64_t activity_level;
|
|
int64_t appetite_level;
|
|
int64_t dream_level;
|
|
int64_t anxiety_level;
|
|
std::string comment;
|
|
std::string user_treatment_scheme_uuid;
|
|
};
|
|
}
|