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