Older/Database/HomeBox.h
luocai 85b93fbbe3
All checks were successful
Deploy / Build (push) Successful in 5m4s
move dir.
2024-11-26 19:31:09 +08: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__