freescout-support/app/Events/UserCreatedThreadDraft.php
2018-09-14 01:24:04 -07:00

23 lines
394 B
PHP

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