mirror of
https://github.com/Chouchen/ShikiryuRSS.git
synced 2025-09-10 02:24:33 +02:00
✨ Starts refactoring reader
Still missing media:group
This commit is contained in:
15
src/Entity/Channel/Image.php
Normal file
15
src/Entity/Channel/Image.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?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'];
|
||||
}
|
Reference in New Issue
Block a user