You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
377 B
19 lines
377 B
<?php
|
|
|
|
class Conversation{
|
|
|
|
// Object attributes
|
|
public string $id;
|
|
public string $name;
|
|
public $listMessages;
|
|
public $listIdUsers;
|
|
|
|
public function __construct($_id,$_name,$_listMessages,$_listIdUsers){
|
|
$this->id=$_id;
|
|
$this->name=$_name;
|
|
$this->listMessages=$_listMessages;
|
|
$this->listIdUsers=$_listIdUsers;
|
|
}
|
|
}
|
|
|
|
?>
|