1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-25 03:43:33 +01:00
freescout/app/Events/UserAddedNote.php

24 lines
385 B
PHP
Raw Normal View History

2018-08-18 14:21:14 +02:00
<?php
namespace App\Events;
use App\Conversation;
use App\Thread;
class UserAddedNote
{
public $conversation;
public $thread;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(Conversation $conversation, Thread $thread)
{
$this->conversation = $conversation;
$this->thread = $thread;
}
}