mirror of
https://github.com/Karaka-Management/oms-OnlineResourceWatcher.git
synced 2026-01-24 05:38:42 +00:00
29 lines
444 B
C++
Executable File
29 lines
444 B
C++
Executable File
/**
|
|
* Karaka
|
|
*
|
|
* @package Models
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://karaka.app
|
|
*/
|
|
#ifndef MODELS_ORGANIZATION_H
|
|
#define MODELS_ORGANIZATION_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "ReosurceStatus.h"
|
|
|
|
namespace Models {
|
|
typedef struct {
|
|
int id = 0;
|
|
} Organization;
|
|
|
|
inline
|
|
void free_Organization(Organization *obj)
|
|
{
|
|
}
|
|
}
|
|
|
|
#endif |