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

This commit is contained in:
2026-01-09 18:29:22 +03:00
parent c79ec099e9
commit a4d5384fd3
4 changed files with 29 additions and 3 deletions
+11
View File
@@ -0,0 +1,11 @@
#pragma once
#include "medication_dto.h"
namespace uad
{
struct treatment_scheme_dto {
std::string scheme_uuid;
medication_dto medication;
};
}
+14
View File
@@ -0,0 +1,14 @@
#pragma once
#include "treatment_scheme_dto.h"
namespace uad
{
struct user_treatment_scheme_dto {
std::string uuid;
std::string user_uuid;
std::string treatment_name;
std::optional<std::string> instructions;
std::vector<treatment_scheme_dto> medications;
};
}