mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
17 lines
298 B
PHP
Executable File
17 lines
298 B
PHP
Executable File
<?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 = [
|
|
|
|
];
|
|
}
|