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/room/RoomList.class.php

19 lines
489 B
PHP
Raw Normal View History

2011-11-26 15:47:28 +00:00
<?php
namespace chat\data\room;
2011-11-26 15:47:28 +00:00
/**
* Represents a list of chat rooms.
*
* @author Tim Düsterhus
2013-01-19 19:36:40 +00:00
* @copyright 2010-2013 Tim Düsterhus
2011-11-26 15:47:28 +00:00
* @license Creative Commons Attribution-NonCommercial-ShareAlike <http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode>
2013-01-19 19:36:40 +00:00
* @package be.bastelstu.chat
* @subpackage data.room
2011-11-26 15:47:28 +00:00
*/
2013-01-19 19:36:40 +00:00
class RoomList extends \wcf\data\DatabaseObjectList {
2011-11-26 15:47:28 +00:00
/**
* @see \wcf\data\DatabaseObjectList::$className
2011-11-26 15:47:28 +00:00
*/
2013-01-19 19:36:40 +00:00
public $className = 'chat\data\room\Room';
2011-11-26 15:47:28 +00:00
}