CSY2028-assignment-2/jobs/Entity/Applicant.php

12 lines
236 B
PHP
Raw Normal View History

2023-01-23 14:37:07 +00:00
<?php
namespace jobs\Entity;
2023-02-05 23:35:31 +00:00
class Applicant { //Represents Applicant Entity from applicants table
2023-01-23 14:37:07 +00:00
public $id;
public $name;
public $email;
public $details;
public $cv;
public $jobId;
private $jobsTable;
}
?>