mirror of
https://gh.wpcy.net/https://github.com/rilustrisimo/freescout-support.git
synced 2026-04-29 14:32:36 +08:00
20 lines
312 B
PHP
20 lines
312 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Conversation;
|
|
|
|
class ConversationStatusChanged
|
|
{
|
|
public $conversation;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(Conversation $conversation)
|
|
{
|
|
$this->conversation = $conversation;
|
|
}
|
|
}
|