aboutsummaryrefslogtreecommitdiff
path: root/app/Models/ProjectCategory.php
diff options
context:
space:
mode:
authorFrankie B <git@diskfloppy.me>2023-06-14 22:52:00 +0100
committerFrankie B <git@diskfloppy.me>2023-06-14 22:52:00 +0100
commitad7f3fca65298e7ffe3ca689ec16e58e6ecd545e (patch)
tree12f2bc93f285bd58b036cae0b1d705fba2c40384 /app/Models/ProjectCategory.php
parentcf2c13fa26e33200b007f0eeebb17f3e9311650d (diff)
Move classes to models folder
Diffstat (limited to 'app/Models/ProjectCategory.php')
-rw-r--r--app/Models/ProjectCategory.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/app/Models/ProjectCategory.php b/app/Models/ProjectCategory.php
new file mode 100644
index 0000000..babe265
--- /dev/null
+++ b/app/Models/ProjectCategory.php
@@ -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;
+ }
+}