generated from Sithas/conan_template
База для ручки PostUserMedicationsExecutor.h
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
#include "medication_dto.h"
|
||||
|
||||
namespace uad
|
||||
{
|
||||
struct treatment_scheme_dto {
|
||||
std::string scheme_uuid;
|
||||
medication_dto medication;
|
||||
};
|
||||
}
|
||||
@@ -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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user