c181f35164939b05d1030bd243b9600dc7019b5b
[GitHub/WoltLab/WCF.git] /
1 <?php
2 namespace wcf\data\user\notification\type;
3 use wcf\data\DatabaseObjectList;
4
5 /**
6 * Represents a list of user notification types.
7 *
8 * @author Marcel Werk
9 * @copyright 2001-2011 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package com.woltlab.wcf.notification
12 * @subpackage data.user.notification.type
13 * @category Community Framework
14 */
15 class UserNotificationTypeList extends DatabaseObjectList {
16 /**
17 * @see DatabaseObjectList::$className
18 */
19 public $className = 'wcf\data\user\notification\type\UserNotificationType';
20 }