Mostrar alertas en inicio
This commit is contained in:
16
app/src/Model/Proyecto/TipoUnidad.php
Normal file
16
app/src/Model/Proyecto/TipoUnidad.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
namespace Incoviba\Model\Proyecto;
|
||||
|
||||
use Incoviba\Model;
|
||||
|
||||
class TipoUnidad extends Model\Tipo
|
||||
{
|
||||
public int $orden;
|
||||
|
||||
public function jsonSerialize(): mixed
|
||||
{
|
||||
return array_merge(parent::jsonSerialize(), [
|
||||
'orden' => $this->orden
|
||||
]);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user