mirror of
https://github.com/ToxicCrack/PrintABrick.git
synced 2025-05-19 05:30:08 -07:00
112 lines
1.6 KiB
PHP
112 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace AppBundle\Client\Brickset\Entity;
|
|
|
|
class Theme
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $theme;
|
|
/**
|
|
* @var int
|
|
*/
|
|
protected $setCount;
|
|
/**
|
|
* @var int
|
|
*/
|
|
protected $subthemeCount;
|
|
/**
|
|
* @var int
|
|
*/
|
|
protected $yearFrom;
|
|
/**
|
|
* @var int
|
|
*/
|
|
protected $yearTo;
|
|
|
|
public function __construct()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getTheme()
|
|
{
|
|
return $this->theme;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $theme
|
|
*/
|
|
public function setTheme($theme)
|
|
{
|
|
$this->theme = $theme;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getSetCount()
|
|
{
|
|
return $this->setCount;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $setCount
|
|
*/
|
|
public function setSetCount($setCount)
|
|
{
|
|
$this->setCount = $setCount;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getSubthemeCount()
|
|
{
|
|
return $this->subthemeCount;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $subthemeCount
|
|
*/
|
|
public function setSubthemeCount($subthemeCount)
|
|
{
|
|
$this->subthemeCount = $subthemeCount;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getYearFrom()
|
|
{
|
|
return $this->yearFrom;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $yearFrom
|
|
*/
|
|
public function setYearFrom($yearFrom)
|
|
{
|
|
$this->yearFrom = $yearFrom;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getYearTo()
|
|
{
|
|
return $this->yearTo;
|
|
}
|
|
|
|
/**
|
|
* @param mixed $yearTo
|
|
*/
|
|
public function setYearTo($yearTo)
|
|
{
|
|
$this->yearTo = $yearTo;
|
|
}
|
|
}
|