Archived
1
0

Initial commit as of 2018-10-16

This commit is contained in:
Marcel
2018-10-16 18:28:42 +02:00
commit 29d7c2ffdc
3601 changed files with 358427 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class NotificationUser
{
protected $id;
protected $username;
protected $displayname;
protected $profilePicture;
public function __construct($id, $username, $displayname)
{
$this->id = $id;
$this->username = $username;
$this->displayname = $displayname;
}
public function getId()
{
return $this->id;
}
public function getUsername()
{
return $this->username;
}
public function getName()
{
return $this->displayname;
}
public function getProfilePicture()
{
return $this->profilePicture;
}
public function setProfilePicture($profilePicture)
{
$this->profilePicture = $profilePicture;
}
}