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

7 lines
135 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 Category { //Represents category Entity from categories table
2023-01-23 14:37:07 +00:00
public $id;
public $name;
}
?>