diff options
Diffstat (limited to 'app/Models/BookmarkCategory.php')
-rw-r--r-- | app/Models/BookmarkCategory.php | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/app/Models/BookmarkCategory.php b/app/Models/BookmarkCategory.php deleted file mode 100644 index 10c031a..0000000 --- a/app/Models/BookmarkCategory.php +++ /dev/null @@ -1,24 +0,0 @@ -<?php -namespace App\Models; - -class BookmarkCategory { - /** - * @var string The name of the bookmark category. - */ - public $name; - - /** - * @var array An array of Bookmark objects. - */ - public $bookmarks; - - /** - * BookmarkCategory constructor. - * @param string $name The name of the bookmark category. - * @param array $bookmarks An array of Bookmark objects. - */ - public function __construct($name, $bookmarks = array()) { - $this->name = $name; - $this->bookmarks = $bookmarks; - } -} |