Files
wticreatorstudio/Modules/JobPortal/Events/EmployerChangeApplicantsStatus.php
T
2024-02-12 22:54:20 -05:00

15 lines
244 B
PHP

<?php
namespace Modules\JobPortal\Events;
use Illuminate\Queue\SerializesModels;
class EmployerChangeApplicantsStatus
{
use SerializesModels;
public $row;
public function __construct($row)
{
$this->row = $row;
}
}