mirror of
https://github.com/Karaka-Management/oms-OnlineResourceWatcher.git
synced 2026-01-23 13:28:39 +00:00
20 lines
329 B
C++
Executable File
20 lines
329 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_ACCOUNT_STATUS_H
|
|
#define MODELS_ACCOUNT_STATUS_H
|
|
|
|
namespace Models {
|
|
typedef enum {
|
|
ACTIVE = 1,
|
|
INACTIVE = 2
|
|
} AccountStatus;
|
|
}
|
|
|
|
#endif |