proxitok/app/Models/RSSTemplate.php
2022-11-04 20:08:19 +01:00

16 lines
364 B
PHP

<?php
namespace App\Models;
class RSSTemplate extends BaseTemplate {
public string $desc;
public string $link;
public array $items;
function __construct(string $title, string $desc, string $link, array $items) {
parent::__construct($title);
$this->desc = $desc;
$this->link = $link;
$this->items = $items;
}
}