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
373 B
19 lines
373 B
<?php
|
|
|
|
class Conversation{
|
|
|
|
// Object attributes
|
|
public string $id;
|
|
public string $name;
|
|
public $tabMessages;
|
|
public $listIdUsers;
|
|
|
|
public function __construct($_id,$_name,$_tabMessages,$_listIdUsers){
|
|
$this->id=$_id;
|
|
$this->name=$_name;
|
|
$this->tabMessages=$_tabMessages;
|
|
$this->listIdUsers=$_listIdUsers;
|
|
}
|
|
}
|
|
|
|
?>
|