szurubooru/src/Entities/Score.php

62 lines
815 B
PHP
Raw Normal View History

2014-09-28 15:21:25 +02:00
<?php
namespace Szurubooru\Entities;
2014-10-06 21:09:19 +02:00
final class Score extends Entity
2014-09-28 15:21:25 +02:00
{
private $postId;
2014-10-05 16:19:08 +02:00
private $commentId;
2014-09-28 15:21:25 +02:00
private $score;
private $time;
private $userId;
2014-09-28 15:21:25 +02:00
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;
}
2014-10-05 16:19:08 +02:00
public function getCommentId()
{
return $this->commentId;
}
public function setCommentId($commentId)
{
$this->commentId = $commentId;
}
2014-09-28 15:21:25 +02:00
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;
}
}