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