mirror of
https://github.com/Karaka-Management/oms-OnlineResourceWatcher.git
synced 2026-01-23 21:28:41 +00:00
20 lines
350 B
C++
Executable File
20 lines
350 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_STATUS_H
|
|
#define MODELS_RESOURCE_STATUS_H
|
|
|
|
namespace Models {
|
|
typedef enum {
|
|
RESOURCE_ACTIVE = 1,
|
|
RESOURCE_INACTIVE = 2
|
|
} ResourceStatus;
|
|
}
|
|
|
|
#endif |