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:
19
src/Entity/Item.php
Normal file
19
src/Entity/Item.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace Shikiryu\SRSS\Entity;
|
||||
|
||||
class Item
|
||||
{
|
||||
public ?string $title;
|
||||
public ?string $link;
|
||||
public ?string $description;
|
||||
public ?string $author;
|
||||
public ?string $category;
|
||||
public ?string $comments;
|
||||
public ?string $enclosure;
|
||||
public ?string $guid;
|
||||
public ?string $pubDate;
|
||||
public ?string $source;
|
||||
|
||||
public array $required = ['description'];
|
||||
}
|
Reference in New Issue
Block a user