* @copyright Loic Blot 2014-2018 */ namespace OCA\OcSms\Db; class Conversation { public $id; public $userId; public $phoneNumber; public function __construct($userId, $phoneNumber) { $this->userId = $userId; $this->phoneNumber = $phoneNumber; $id = null; } }