mirror of
https://github.com/Karaka-Management/oms-OnlineResourceWatcher.git
synced 2026-01-11 07:58:42 +00:00
20 lines
325 B
C++
Executable File
20 lines
325 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_RESOURCE_TYPE_H
|
|
#define MODELS_RESOURCE_TYPE_H
|
|
|
|
namespace Models {
|
|
typedef enum {
|
|
ONLINE = 1,
|
|
OFFLINE = 2
|
|
} ResourceType;
|
|
}
|
|
|
|
#endif |