mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-08-02 03:16:27 -04:00
15 lines
244 B
PHP
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;
|
|
}
|
|
}
|