diskfloppy.me/app/Models/ProjectCategory.php

25 lines
538 B
PHP
Raw Normal View History

2023-06-14 21:52:00 +00:00
<?php
2023-06-14 22:24:47 +00:00
namespace App\Models;
2023-06-14 21:52:00 +00:00
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;
}
}