generated from Sithas/conan_template
18 lines
205 B
C++
18 lines
205 B
C++
#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;
|
|
};
|
|
}
|