summaryrefslogtreecommitdiffstats
path: root/lib/Db/ListType.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Db/ListType.php')
-rw-r--r--lib/Db/ListType.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/Db/ListType.php b/lib/Db/ListType.php
new file mode 100644
index 000000000..1ccd592a8
--- /dev/null
+++ b/lib/Db/ListType.php
@@ -0,0 +1,30 @@
+<?php
+/**
+ * Nextcloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Alessandro Cosentino <cosenal@gmail.com>
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright 2012 Alessandro Cosentino
+ * @copyright 2012-2014 Bernhard Posselt
+ */
+
+namespace OCA\News\Db;
+
+/**
+ * Enum FeedType
+ *
+ * @package OCA\News\Db
+ */
+class FeedType
+{
+ const FEED = 0;
+ const FOLDER = 1;
+ const STARRED = 2;
+ const SUBSCRIPTIONS = 3;
+ const SHARED = 4;
+ const EXPLORE = 5;
+ const UNREAD = 6;
+}