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

This commit is contained in:
2026-01-09 13:45:16 +03:00
parent a3e69b65fb
commit c79ec099e9
16 changed files with 47 additions and 47 deletions
+17
View File
@@ -0,0 +1,17 @@
#pragma once
#include <string>
#include "../helpers/helpers.h"
namespace uad
{
struct medication_dto
{
std::string uuid;
std::string name;
int64_t dose;
std::string unit;
bool is_urgent;
};
}