2023-01-28 16:18:14 +00:00
|
|
|
<?php
|
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2023-03-23 03:33:05 +00:00
|
|
|
|
2023-01-28 16:18:14 +00:00
|
|
|
namespace JKingWeb\Arsse\Feed;
|
|
|
|
|
|
|
|
class Item {
|
|
|
|
public $id;
|
|
|
|
public $url;
|
|
|
|
public $title;
|
|
|
|
public $author;
|
|
|
|
public $publishedDate;
|
|
|
|
public $updatedDate;
|
|
|
|
public $urlContentHash;
|
|
|
|
public $urlTitleHash;
|
|
|
|
public $titleContentHash;
|
|
|
|
public $content;
|
|
|
|
public $scrapedContent;
|
|
|
|
public $enclosureUrl;
|
|
|
|
public $enclosureType;
|
|
|
|
public $categories = [];
|
2023-03-23 03:33:05 +00:00
|
|
|
}
|