summaryrefslogtreecommitdiff
path: root/includes/story.inc
blob: d0c40ab14e04a1216e214ae242a11d7c4df847a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?

class Story {
  function Story($userid, $subject, $abstract, $article, $category, $timestamp) {
    $this->userid = $userid;
    $this->subject = $subject;
    $this->abstract = $abstract;
    $this->article = $article;
    $this->category = $category;
    $this->timestamp = $timestamp;
  }
}

?>