Files
UpAndDown/src/dtos/medication_dto.h
T

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;
};
}