<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
class InfoSectionType
{
/**
* @var int
*/
private $id;
/**
* @var string
*/
private $name;
/**
* Get id.
*
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* Set name.
*
* @param string $name
*
* @return InfoSectionType
*/
public function setName($name)
{
$this->name = $name;
return $this;
}
/**
* Get name.
*
* @return string
*/
public function getName()
{
return $this->name;
}
}