mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-31 05:16:49 -04:00
16 lines
241 B
PHP
16 lines
241 B
PHP
<?php
|
|
namespace Modules\JobPortalJob\Events;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class CandidateApplyJobSubmit
|
|
{
|
|
use SerializesModels;
|
|
public $row;
|
|
|
|
public function __construct($row)
|
|
{
|
|
$this->row = $row;
|
|
}
|
|
}
|