Older/Server/Database/HomeBox.h
amass ec6a5b8fca
All checks were successful
Deploy / PullDocker (push) Successful in 8s
Deploy / Build (push) Successful in 1m27s
add homebox code.
2024-07-10 14:37:40 +00:00

20 lines
298 B
C++

#ifndef __HOMEBOX_H__
#define __HOMEBOX_H__
#include <list>
#include <string>
class HomeBox {
public:
class Item {
public:
int id = -1;
std::string name;
std::string location;
int cost;
};
using Items = std::list<Item>;
};
#endif // __HOMEBOX_H__