summaryrefslogtreecommitdiff
path: root/includes/comment.inc
blob: 110283b00d07d9bebb8e0a8f04367ed1dc33ca27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?

class Comment {
  function Comment($userid, $subject, $comment, $timestamp, $url, $fake_email, $score, $votes, $cid) {
    $this->userid = $userid;
    $this->subject = $subject;
    $this->comment = $comment;
    $this->timestamp = $timestamp;
    $this->url = $url;
    $this->fake_email = $fake_email;
    $this->score = $score;
    $this->votes = $votes;
    $this->cid = $cid;
  }
}

?>