mirror of
https://github.com/freescout-helpdesk/freescout.git
synced 2024-11-24 19:33:07 +01:00
24 lines
419 B
PHP
24 lines
419 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Conversation;
|
|
use App\Thread;
|
|
|
|
class CustomerCreatedConversation
|
|
{
|
|
public $conversation;
|
|
public $last_thread;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(Conversation $conversation, Thread $last_thread)
|
|
{
|
|
$this->conversation = $conversation;
|
|
$this->last_thread = $last_thread;
|
|
}
|
|
}
|