<?php
namespace App\Entity;
class IconCategory
{
/**
* @var integer
*/
private $id;
/**
* @var string
*/
private $categoryName;
/**
* @var integer
*/
private $position;
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set categoryName
*
* @param string $categoryName
*
* @return IconCategory
*/
public function setCategoryName($categoryName)
{
$this->categoryName = $categoryName;
return $this;
}
/**
* Get categoryName
*
* @return string
*/
public function getCategoryName()
{
return $this->categoryName;
}
/**
* Set position
*
* @param integer $position
*
* @return FaqCategory
*/
public function setPosition($position)
{
$this->position = $position;
return $this;
}
/**
* Get position
*
* @return integer
*/
public function getPosition()
{
return $this->position;
}
}