summaryrefslogtreecommitdiffstats
path: root/lib/collection.php
blob: 4f7f06d7a492df70b5f8315ac8b6a097be964ea5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?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;

/**
 * This class models a collection, which is either a feed or a folder.
 */
class Collection {
	
	private $id;
	
	public function __construct($id){
		$this->id = $id;
	}

	public function getId(){
		return $this->id;
	}
	
	public function setId($id){
		$this->id = $id;
	}
	
}