19 lines
369 B
PHP
19 lines
369 B
PHP
![]() |
<?php
|
||
|
namespace Incoviba\Model;
|
||
|
|
||
|
use Incoviba\Common\Ideal\Model;
|
||
|
|
||
|
class Provincia extends Model
|
||
|
{
|
||
|
public string $descripcion;
|
||
|
public Region $region;
|
||
|
|
||
|
public function jsonSerialize(): mixed
|
||
|
{
|
||
|
return array_merge(parent::jsonSerialize(), [
|
||
|
'descripcion' => $this->descripcion,
|
||
|
'region' => $this->region
|
||
|
]);
|
||
|
}
|
||
|
}
|