oms-RiskManagement/Models/Project.php
2024-03-20 07:21:24 +00:00

43 lines
713 B
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.2
*
* @package Modules\RiskManagement\Models
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace Modules\RiskManagement\Models;
use Modules\ProjectManagement\Models\Project as PMProject;
/**
* Risk Management class.
*
* @package Modules\RiskManagement\Models
* @license OMS License 2.0
* @link https://jingga.app
* @since 1.0.0
*/
class Project
{
/**
* ID.
*
* @var int
* @since 1.0.0
*/
public int $id = 0;
public ?PMProject $project = null;
public ?int $responsible = null;
public ?int $deputy = null;
}