#pragma once #include struct IkarusBlueprint { consteval static inline auto OBJECT_NAME() -> std::string_view { return "blueprint"; } consteval static inline auto TABLE_NAME() -> std::string_view { return "blueprints"; } IkarusBlueprint( struct IkarusProject * project, int64_t id, std::string_view name ); struct IkarusProject * project; int64_t id; std::string name; };