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