19 lines
409 B
PHP
19 lines
409 B
PHP
<?php
|
|
namespace Incoviba\Model\Proyecto\Proyecto;
|
|
|
|
class Superficie implements \JsonSerializable
|
|
{
|
|
public float $terreno;
|
|
public float $sobre_nivel;
|
|
public float $bajo_nivel;
|
|
|
|
public function jsonSerialize(): mixed
|
|
{
|
|
return [
|
|
'terreno' => $this->terreno,
|
|
'sobre_nivel' => $this->sobre_nivel,
|
|
'bajo_nivel' => $this->bajo_nivel
|
|
];
|
|
}
|
|
}
|