1
0
mirror of https://github.com/nextcloud/ocsms.git synced 2026-08-11 16:32:55 +00:00
Files
ocsms/db/Conversation.php
2018-05-17 12:31:44 +02:00

25 lines
482 B
PHP

<?php
/**
* Nextcloud - Phone Sync
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
* @author Loic Blot <loic.blot@unix-experience.fr>
* @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;
}
}