1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-25 11:52:29 +01:00
freescout/app/Events/UserCreatedConversationDraft.php
2018-09-14 01:24:04 -07:00

24 lines
400 B
PHP

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