Files
safekat/ci4/app/Entities/Configuracion/ConfiguracionSistemaEntity.php

18 lines
323 B
PHP
Executable File

<?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 = [
];
}