mirror of
https://gh.wpcy.net/https://github.com/rilustrisimo/freescout-support.git
synced 2026-04-26 14:02:20 +08:00
23 lines
415 B
PHP
23 lines
415 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Conversation;
|
|
use App\Thread;
|
|
|
|
class UserCreatedConversation
|
|
{
|
|
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;
|
|
}
|
|
}
|