#pragma once #include #include "../helpers/helpers.h" namespace uad { struct medication_dto { std::string uuid; std::string name; int64_t dose; std::string unit; bool is_urgent; }; }