Job Queue

This commit is contained in:
Juan Pablo Vial
2025-05-10 12:30:35 -04:00
parent 61324f159b
commit 8b2de31e02
6 changed files with 251 additions and 0 deletions

18
app/src/Model/Job.php Normal file
View File

@ -0,0 +1,18 @@
<?php
namespace Incoviba\Model;
use Incoviba\Common\Ideal;
class Job extends Ideal\Model
{
public array $configuration;
public bool $executed = false;
protected function jsonComplement(): array
{
return [
'configuration' => $this->configuration,
'executed' => $this->executed
];
}
}