oms-Kanban/Models/KanbanLabel.php
2018-12-09 22:16:55 +01:00

79 lines
1.3 KiB
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.2
*
* @package Modules\Kanban\Models
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link http://website.orange-management.de
*/
declare(strict_types=1);
namespace Modules\Kanban\Models;
/**
* Task class.
*
* @package Modules\Kanban\Models
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
*/
class KanbanLabel implements \JsonSerializable
{
private $id = 0;
private $name = '';
private $board = 0;
private $color = 0;
public function __construct()
{
}
public function getId() : int
{
return $this->id;
}
public function getName() : string
{
return $this->name;
}
public function setName(string $name) : void
{
$this->name = $name;
}
public function setColor(int $color) : void
{
$this->color = $color;
}
public function getColor() : int
{
return $this->color;
}
public function getBoard() : int
{
return $this->board;
}
public function setBoard(int $board) : void
{
$this->board = $board;
}
public function jsonSerialize() : array
{
return [];
}
}