oms-OnlineResourceWatcher/app/server/Models/AccountStatus.h

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