xref: /dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/FeedImage.php (revision 3a97d936870170491bdd7d03d71143143b10191d)
1<?php
2
3/**
4 * A FeedImage may be added to a FeedCreator feed.
5 *
6 * @author  Kai Blankenhorn <kaib@bitfolge.de>
7 * @since   1.3
8 * @package de.bitfolge.feedcreator
9 */
10class FeedImage extends HtmlDescribable
11{
12    /**
13     * Mandatory attributes of an image.
14     */
15    public $title, $url, $link;
16
17    /**
18     * Optional attributes of an image.
19     */
20    public $width, $height, $description;
21}
22