Model/CategoryInterface.php
changeset 2 13f43f53d0ba
child 83 e9f04298bdfa
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Model/CategoryInterface.php	Sun Oct 16 14:50:48 2011 +0200
@@ -0,0 +1,36 @@
+<?php
+/*
+ * This file is part of the WikiTagBundle package.
+ *
+ * (c) IRI <http://www.iri.centrepompidou.fr/>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace IRI\Bundle\WikiTagBundle\Model;
+
+interface CategoryInterface {
+    
+    /**
+    * Get id
+    *
+    * @return integer
+    */
+    function getId();
+    
+    /**
+     * Set label
+     *
+     * @param string $label
+     */
+    function setLabel($label);
+    
+    /**
+     * Get label
+     *
+     * @return string
+     */
+    function getLabel();
+    
+}
\ No newline at end of file