szurubooru/src/Entities/Score.php
2014-10-18 18:48:36 +02:00

61 lines
815 B
PHP

<?php
namespace Szurubooru\Entities;
final class Score extends Entity
{
private $postId;
private $userId;
private $commentId;
private $time;
private $score;
public function getUserId()
{
return $this->userId;
}
public function setUserId($userId)
{
$this->userId = $userId;
}
public function getPostId()
{
return $this->postId;
}
public function setPostId($postId)
{
$this->postId = $postId;
}
public function getCommentId()
{
return $this->commentId;
}
public function setCommentId($commentId)
{
$this->commentId = $commentId;
}
public function getTime()
{
return $this->time;
}
public function setTime($time)
{
$this->time = $time;
}
public function getScore()
{
return $this->score;
}
public function setScore($score)
{
$this->score = $score;
}
}