summaryrefslogtreecommitdiffstats
path: root/db/statusflag.php
blob: c4920a192c5d32d85aac2f750da4d7f01d367767 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
/**
* ownCloud - News app
*
* @author Alessandro Cosentino
* Copyright (c) 2012 - Alessandro Cosentino <cosenal@gmail.com>
*
* This file is licensed under the Affero General Public License version 3 or later.
* See the COPYING-README file
*
*/

namespace OCA\News;

class StatusFlag{
	const UNREAD    = 0x02;
	const IMPORTANT = 0x04;
	const DELETED   = 0x08;
	const UPDATED   = 0x16;
}