oms-RiskManagement/Models/Project.php
2018-02-15 20:27:23 +01:00

74 lines
1.2 KiB
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.1
*
* @package TBD
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link http://website.orange-management.de
*/
declare(strict_types=1);
namespace Modules\RiskManagement\Models;
/**
* Risk Management class.
*
* @package Modules
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
*/
class Project
{
private $id = 0;
private $project = null;
private $responsible = null;
private $deputy = null;
public function __construct()
{
}
public function getId() : int
{
return $this->id;
}
public function getProject()
{
return $this->project;
}
public function setProject(string $project)
{
$this->project = $project;
}
public function getResponsible()
{
return $this->responsible;
}
public function setResponsible($responsible) /* : void */
{
$this->responsible = $responsible;
}
public function getDeputy()
{
return $this->deputy;
}
public function setDeputy($deputy) /* : void */
{
$this->deputy = $deputy;
}
}