1
0
mirror of https://github.com/Chouchen/ShikiryuRSS.git synced 2024-06-02 22:07:57 +02:00
ShikiryuRSS/src/Entity/Channel/Image.php

15 lines
385 B
PHP
Raw Normal View History

<?php
namespace Shikiryu\SRSS\Entity\Channel;
class Image
{
public string $url;
public string $title;
public string $link;
public int $width; // Maximum value for width is 144, default value is 88.
public int $height; //Maximum value for height is 400, default value is 31.
public string $description;
public array $required = ['url', 'title', 'link'];
}