Mostrar alertas en inicio

This commit is contained in:
2023-10-19 18:20:37 -03:00
parent c2a3192b32
commit 02e1f3e091
25 changed files with 915 additions and 225 deletions

View 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
]);
}
}