pdv.backend/app/Enums/EventTypeEk.php
Moisés de Jesús Cortés Castellanos e487aa8726
ADD: Historial de acciones (#5)
2025-01-03 12:55:57 -06:00

40 lines
592 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 EventTypeEk : string
{
use Extended;
/**
* Texto
*/
case STRING = 'S';
/**
* JSON
*/
case JSON = 'J';
/**
* Booleano
*/
case BOOL = 'B';
/**
* Entero
*/
case INT = 'I';
}