phpOMS/Algorithm/JobScheduling/v2/Dependency/Machine.php
Dennis Eichhorn 74e1684ad0 update
2023-08-28 22:06:37 +00:00

35 lines
518 B
PHP

<?php
/**
* Jingga
*
* PHP Version 8.1
*
* @package phpOMS\Scheduling\Dependency
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace phpOMS\Scheduling\Dependency;
/**
* Machine.
*
* @package phpOMS\Scheduling\Dependency
* @license OMS License 2.0
* @link https://jingga.app
* @since 1.0.0
*/
class Machine
{
public int $id = 0;
public MachineType $type;
public array $idle = [];
}