Move classes to models folder

This commit is contained in:
Frankie B 2023-06-14 22:52:00 +01:00
commit ad7f3fca65
6 changed files with 113 additions and 131 deletions

View file

@ -0,0 +1,22 @@
<?php
class ProjectCategory {
/**
* @var string The name of the bookmark category.
*/
public $name;
/**
* @var array An array of Project objects.
*/
public $projects;
/**
* BookmarkCategory constructor.
* @param string $name The name of the bookmark category.
* @param array $projects An array of Project objects.
*/
public function __construct($name, $projects = array()) {
$this->name = $name;
$this->projects = $projects;
}
}