mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
listo para añadir tarifas
This commit is contained in:
17
ci4/app/Entities/Configuracion/ConfiguracionSistemaEntity.php
Executable file
17
ci4/app/Entities/Configuracion/ConfiguracionSistemaEntity.php
Executable file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
namespace App\Entities\Configuracion;
|
||||
|
||||
use CodeIgniter\Entity;
|
||||
|
||||
class ConfiguracionSistemaEntity extends \CodeIgniter\Entity\Entity
|
||||
{
|
||||
protected $attributes = [
|
||||
"id" => null,
|
||||
"var_name" => null,
|
||||
"value" => null,
|
||||
"datatype" => null,
|
||||
|
||||
];
|
||||
protected $casts = [
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user