Add EmailLogListPage
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / ITitledLinkObject.class.php
1 <?php
2
3 namespace wcf\data;
4
5 /**
6 * Common interface to require both title and link.
7 *
8 * @author Alexander Ebert
9 * @copyright 2001-2019 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package WoltLabSuite\Core\Data
12 * @since 3.0
13 */
14 interface ITitledLinkObject extends ILinkableObject, ITitledObject
15 {
16 }