szurubooru/src/Entities/GlobalParam.php

31 lines
387 B
PHP
Raw Normal View History

2014-09-24 23:24:51 +02:00
<?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;
}
}