Base de Datos
This commit is contained in:
23
app/src/Model/Proyecto/Broker.php
Normal file
23
app/src/Model/Proyecto/Broker.php
Normal file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
namespace Incoviba\Model\Proyecto;
|
||||
|
||||
use Incoviba\Common;
|
||||
|
||||
class Broker extends Common\Ideal\Model
|
||||
{
|
||||
public int $rut;
|
||||
public string $digit;
|
||||
public string $name;
|
||||
|
||||
public ?Broker\Data $data = null;
|
||||
|
||||
protected function jsonComplement(): array
|
||||
{
|
||||
return [
|
||||
'rut' => $this->rut,
|
||||
'digit' => $this->digit,
|
||||
'name' => $this->name,
|
||||
'data' => $this->data
|
||||
];
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user