oms-OnlineResourceWatcher/server/Models/Organization.h

27 lines
415 B
C++
Executable File

/**
* 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 <stdio.h>
#include <stdlib.h>
namespace Models {
typedef struct {
int id = 0;
} Organization;
inline
void free_Organization(Organization *obj)
{
}
}
#endif