szurubooru/src/Entities/GlobalParam.php
2014-10-18 18:48:27 +02:00

30 lines
387 B
PHP

<?php
namespace Szurubooru\Entities;
class GlobalParam extends Entity
{
const KEY_FEATURED_POST = 'featuredPost';
private $key;
private $value;
public function getKey()
{
return $this->key;
}
public function setKey($key)
{
$this->key = $key;
}
public function getValue()
{
return $this->value;
}
public function setValue($value)
{
$this->value = $value;
}
}