added read typed entity with foreign key
This commit is contained in:
@@ -16,6 +16,11 @@ namespace matador::test {
|
||||
|
||||
struct airplane
|
||||
{
|
||||
airplane() = default;
|
||||
airplane(unsigned long id, std::string b, std::string m)
|
||||
: id(id)
|
||||
, brand(std::move(b))
|
||||
, model(std::move(m)) {}
|
||||
unsigned long id;
|
||||
std::string brand;
|
||||
std::string model;
|
||||
|
||||
Reference in New Issue
Block a user