1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2024-11-01 14:20:07 +00:00
Tims-Chat/file/lib/data/suspension/SuspensionList.class.php

19 lines
525 B
PHP
Raw Normal View History

2013-06-04 20:54:11 +00:00
<?php
namespace chat\data\suspension;
2013-06-06 14:56:13 +00:00
/**
* Represents a list of chat suspensions.
*
* @author Maximilian Mader
2014-02-27 22:05:09 +00:00
* @copyright 2010-2014 Tim Düsterhus
2013-06-06 14:56:13 +00:00
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
* @package be.bastelstu.chat
* @subpackage data.suspension
*/
2013-06-04 20:54:11 +00:00
class SuspensionList extends \wcf\data\DatabaseObjectList {
/**
2013-06-06 14:56:13 +00:00
* @see wcf\data\DatabaseObjectList::$className
*/
2013-06-04 20:54:11 +00:00
public $className = 'chat\data\suspension\Suspension';
2013-06-12 20:55:16 +00:00
}