Archived
1
0
This repository has been archived on 2020-12-10. You can view files and clone it, but cannot push or open issues or pull requests.
old/application/models/notifications/NotificationUser.php
2018-10-16 18:28:42 +02:00

42 lines
948 B
PHP

<?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;
}
}