/** * Karaka * * @package Models * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 * @link https://karaka.app */ #ifndef MODELS_INSTALL_TYPE_H #define MODELS_INSTALL_TYPE_H namespace Models { typedef enum { WEB = 1, LOCAL = 2 } InstallType; } #endif