Initial version (work in progress)
[GitHub/WoltLab/com.woltlab.wcf.conversation.git] / files / lib / data / conversation / label / ConversationLabelList.class.php
1 <?php
2 namespace wcf\data\conversation\label;
3 use wcf\data\DatabaseObjectList;
4
5 /**
6 * Represents a list of conversation labels.
7 *
8 * @author Marcel Werk
9 * @copyright 2001-2012 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package com.woltlab.wcf.conversation
12 * @subpackage data.conversation.label
13 * @category Community Framework
14 */
15 class ConversationLabelList extends DatabaseObjectList {
16 /**
17 * @see wcf\data\DatabaseObjectList::$className
18 */
19 public $className = 'wcf\data\conversation\label\ConversationLabel';
20 }