pdv.backend/app/Enums/SettingTypeEk.php
Moisés de Jesús Cortés Castellanos 185f930f22
UPDATE: Logo y versión (#2)
2024-12-16 15:56:48 -06:00

40 lines
594 B
PHP

<?php namespace App\Enums;
use Notsoweb\LaravelCore\Traits\Enums\Extended;
/**
* @copyright Copyright (c) 2001-2023 Golsystems (https://www.golsystems.mx) - All rights reserved.
*/
/**
* Tipos de configuración
*
* @author Moisés de Jesús Cortés Castellanos <ing.moisesdejesuscortesc@notsoweb.com>
*
* @version 1.0.0
*/
enum SettingTypeEk : string
{
use Extended;
/**
* Texto
*/
case STRING = 'S';
/**
* JSON
*/
case JSON = 'J';
/**
* Booleano
*/
case BOOL = 'B';
/**
* Entero
*/
case INT = 'I';
}