freescout-support/app/Events/UserAddedNote.php
2018-08-18 05:21:14 -07:00

23 lines
385 B
PHP

<?php
namespace App\Events;
use App\Conversation;
use App\Thread;
class UserAddedNote
{
public $conversation;
public $thread;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(Conversation $conversation, Thread $thread)
{
$this->conversation = $conversation;
$this->thread = $thread;
}
}