База для ручки PostUserMedicationsExecutor.h

This commit is contained in:
2026-01-16 07:40:00 +03:00
parent 11641e3fa1
commit f56c14b3da
7 changed files with 150 additions and 21 deletions
+22
View File
@@ -0,0 +1,22 @@
#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;
};
}