Auth, Login, Home, Venta->Listados->Precios
This commit is contained in:
16
app/src/Model/Tipo.php
Normal file
16
app/src/Model/Tipo.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
namespace Incoviba\Model;
|
||||
|
||||
use Incoviba\Common\Ideal;
|
||||
|
||||
abstract class Tipo extends Ideal\Model
|
||||
{
|
||||
public string $descripcion;
|
||||
|
||||
public function jsonSerialize(): mixed
|
||||
{
|
||||
return array_merge(parent::jsonSerialize(), [
|
||||
'descripcion' => $this->descripcion
|
||||
]);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user