forumId = 0; $this->threadId = 0; $this->postId = 0; } /** * Set cId. * * @return CForumNotification */ public function setCId(int $cId) { $this->cId = $cId; return $this; } /** * Get cId. * * @return int */ public function getCId() { return $this->cId; } /** * Set userId. * * @return CForumNotification */ public function setUserId(int $userId) { $this->userId = $userId; return $this; } /** * Get userId. * * @return int */ public function getUserId() { return $this->userId; } /** * Set forumId. * * @return CForumNotification */ public function setForumId(int $forumId) { $this->forumId = $forumId; return $this; } /** * Get forumId. * * @return int */ public function getForumId() { return $this->forumId; } /** * Set threadId. * * @return CForumNotification */ public function setThreadId(int $threadId) { $this->threadId = $threadId; return $this; } /** * Get threadId. * * @return int */ public function getThreadId() { return $this->threadId; } /** * Set postId. * * @return CForumNotification */ public function setPostId(int $postId) { $this->postId = $postId; return $this; } /** * Get postId. * * @return int */ public function getPostId() { return $this->postId; } }