Files
safekat/ci4/app/Entities/Configuracion/UbicacionesEntity.php
2024-06-13 18:58:54 +02:00

17 lines
298 B
PHP

<?php
namespace App\Entities\Configuracion;
use CodeIgniter\Entity;
class UbicacionesEntity extends \CodeIgniter\Entity\Entity
{
protected $attributes = [
'id' => null,
'nombre' => null,
'deleted_at' => null, // default value
];
protected $casts = [
];
}