|
<?
|
|
|
|
class Story {
|
|
function Story($userid, $subject, $abstract, $article, $section, $timestamp) {
|
|
$this->userid = $userid;
|
|
$this->subject = $subject;
|
|
$this->abstract = $abstract;
|
|
$this->article = $article;
|
|
$this->section = $section;
|
|
$this->timestamp = $timestamp;
|
|
}
|
|
}
|
|
|
|
?>
|