/** * Karaka * * @package Models * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 * @link https://jingga.app */ #ifndef MODELS_ORGANIZATION_H #define MODELS_ORGANIZATION_H #include #include namespace Models { typedef struct { int id = 0; } Organization; inline void free_Organization(Organization *obj) { } } #endif