<?php
/**
* Short description for the file.
*
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2015, Komma Mediadesign
*/
namespace Komma\Kms\Faq;
use Komma\Kms\Core\Entities\KmsTranslationEntity;
class FaqTranslationEntity extends KmsTranslationEntity
{
public $id;
public $name;
public $description;
public function getName()
{
return $this->name;
}
}